6
我作爲單元測試運行,即使在春季3.1中不使用@rollback
,它也會自動返回。 我的測試看起來像@Transactional是否會在Spring 3中自動回滾事務?
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:application-context.xml" })
public class PersonServiceTest {
@Test
@Transactional
public void savePerson() {
Person person = createPerson();
personService.savePerson(person);
}
}
回滾行爲是否默認設置?
TL; DR:是的,這是默認設置。 – 2015-08-15 03:21:35