我正在编写集成测试,在一种测试方法中,我想将一些数据写入DB,然后阅读它。
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:applicationContext.xml"})
@TransactionConfiguration()
@Transactional
public class SimpleIntegrationTest {
@Resource
private DummyDAO dummyDAO;
/**
* Tries to store {@link com.example.server.entity.DummyEntity}.
*/
@Test
public void testPersistTestEntity() {
int countBefore = dummyDAO.findAll().size();
DummyEntity dummyEntity = new DummyEntity();
dummyDAO.makePersistent(dummyEntity);
//HERE SHOULD COME SESSION.FLUSH()
int countAfter = dummyDAO.findAll().size();
assertEquals(countBefore + 1, countAfter);
}
}
正如您在存储和读取数据之间看到的那样,应该刷新会话,因为默认的FushMode
是AUTO
,因此数据库中实际上不能存储任何数据。
问题:我可以在会话工厂或其他地方将FlushMode
设置为ALWAYS
,以避免重复session.flush()
来电吗?
DAO中的所有数据库调用都使用HibernateTemplate
实例。
提前致谢。
答案 0 :(得分:2)
尝试添加以下内容:
@Autowired
private SessionFactory sessionFactory;
@Before
public void myInitMethod(){
sessionFactory.getCurrentSession().setFlushMode(FlushMode.ALWAYS);
}
答案 1 :(得分:1)
根据hibernate object flushing,默认情况下会在以下几点进行刷新:
因此,在调用dummyDAO.findAll().size();
之前,会话中的对象已在db中刷新。不需要将FlushMode设置为ALWAYS。
答案 2 :(得分:0)
这应该足够了:
@ContextConfiguration(locations="classpath:applicationContext.xml")
public class SimpleIntegrationTest extends AbstractTransactionalJUnit4SpringContextTests {
@Autowired(required = true)
private DummyDAO dummyDAO;
@Test
public void testPersistTestEntity() {
assertEquals(0, dummyDAO.findAll().size());
dummyDAO.makePersistent(new DummyEntity());
assertEquals(1, dummyDAO.findAll().size());
}
}
来自applicationContext.xml
<bean id="transactionManager" class="org.springframework.orm.hibernate.HibernateTransactionManager">
<property name="sessionFactory">
<ref bean="sessionFactory"/>
</property>
</bean>
如果您对此方案中的交易工作方式有疑问,请查看TransactionalTestExecutionListener的来源。
您还可以使用AOP (aspect oriented programming)代理交易。