Junit DirtiesContext 未使用 JPA 回滚我的交易
我在我的存储库类中创建了删除方法,并在类级别使用了@Transactional,
当我调用deletebyID时,它删除了该id。在 Junit 中,我确实使用了 DirtiesContext 它应该回滚事务,但是由于类级别的 @Transactional,它改变了我的删除(它做了应该做的事情),
现在我的 juint 无法回滚该事务。
如何克服这个问题?
@Repository
@Transactional
public class CourseRepository {
@Autowired
EntityManager em;
public Course findById(Long id) {
return em.find(Course.class, id);
}
public Course deleteById(Long id) {
Course course= em.find(Course.class, id);
em.remove(course);
return course;
}
}
在我的朱尼特
@Autowired
CourseRepository courseRepo;
@Test
@DirtiesContext
public void deleteById_basicTest() {
courseRepo.deleteById(100001L);
assertNull(courseRepo.findById(100001L));
}
I have create delete method in my repo class and did use @Transactional at class level,
When I call deletebyID its deleting that id. in Junit I did use DirtiesContext it should roll back the transaction, but due to @Transactional at class level, it commuted my delete (It did what suppose to do),
now my juint not able to rollback that transaction.
How to overcome this issue?
@Repository
@Transactional
public class CourseRepository {
@Autowired
EntityManager em;
public Course findById(Long id) {
return em.find(Course.class, id);
}
public Course deleteById(Long id) {
Course course= em.find(Course.class, id);
em.remove(course);
return course;
}
}
In my Junit
@Autowired
CourseRepository courseRepo;
@Test
@DirtiesContext
public void deleteById_basicTest() {
courseRepo.deleteById(100001L);
assertNull(courseRepo.findById(100001L));
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以对每个测试用例使用@Transactional。它将回滚事务。
有用。
You can use @Transactional for each test case. It will rollbacks transactions.
It works.