MySQL @Transactional @Rollback not working!
I been doing some junit tests and suddenly the @Transactional annotation was not working. I checked all my code and I could not find why.
@Test
@Transactional
@Rollback(true)
public void testCreate(){}
After comparing other test that were working I found that the problem was the MYSQL engine that I was using did not support it so changing it to InnoDB fix it!
August 30, 2011
|
Posted by Ozkey

Categories: