Junit DirtiesContext 未使用 JPA 回滚我的交易

发布于 2025-01-11 16:42:33 字数 749 浏览 0 评论 0原文

我在我的存储库类中创建了删除方法,并在类级别使用了@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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一紙繁鸢 2025-01-18 16:42:33

您可以对每个测试用例使用@Transactional。它将回滚事务。
有用。

@Test
@Transactional
public void deleteById_basicTest() {
    courseRepo.deleteById(100001L);
    assertNull(courseRepo.findById(100001L));
}

You can use @Transactional for each test case. It will rollbacks transactions.
It works.

@Test
@Transactional
public void deleteById_basicTest() {
    courseRepo.deleteById(100001L);
    assertNull(courseRepo.findById(100001L));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文