Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Spring's embedded-database (default DB is HSQLDB) for running some unit tests. I have the following in my context:

<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManger">
    <property name="dataSource" ref="dataSource"/>
</bean>

<jdbc:embedded-database id="dataSource">
   <jdbc:script location="blah"/>
</jdbc:embedded-database>

The unit test is as such:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
@TransactionConfiguration(transactionManager="transactionManager", defaultRollback=true)
@Transactional
public class DAOTest(){

   @Autowired
   public MyDAO myDAO;


   @Test
   public void test1(){
      List list = myDAO.getHibernateTemplate.loadAll(Hit.class);
      assertThat(list.size(), equalTo(0));

      Hit hit = new Hit();
      myDAO.saveHit(hit);

      list = myDAO.getHibernateTemplate.loadAll(Hit.class);
      assertThat(list.size(), equalTo(1));
   }

   @Test
   public void test2(){

      List list = myDAO.getHibernateTemplate.loadAll(Hit.class);
      assertThat(list.size(), equalTo(0));
   }

}

When I run the above, test 2 fails because a list with 1 element is returned. Why is the rollback not happening between the tests?

share|improve this question

1 Answer

up vote 1 down vote accepted

So figured it out. The problem was that I was using a DataSourceTransactionManager but was using Hibernate in the code and therefore needed to use a HibernateTransactionManager.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.