我正在使用 Spring Boot v2.1.3.RELEASE 和 Hibernate v5.3.6 构建一个应用程序。
之前,我问了一个关于如何跨多个服务/存储库使用 @Transactional 回滚的问题。通过将我的实体与 @OneToOne 和 @OneToMany 注释链接在一起,我得到了我需要的东西。
现在我面临一个新问题。在单个服务的函数内,我保存两个单独的实体列表。一个列表已保存,而另一个列表由于违反唯一键约束而失败。自从我测试以来,预计这会失败。
但是,我还没有弄清楚如何使用 @Transactional 注释我的 Service 或方法,以便当第二个列表无法保存时,它也会回滚第一个列表的任何成功保存。
例如:
@Transactional(propagation = Propagation.REQUIRES_NEW, rollbackFor = Exception.class)
protected void saveLists() {
List<Object> list1 = this.repository.getListOne();
List<Object> list2 = this.repository.getListTwo();
//Loop through list one and do some manipulation
//Loop through list two and do some manipulation
this.repository.saveAll(list1); // this saves all successfully
this.repository.saveAll(list2); // this has unique key exception
// rollback both list1 and list2 changes
}
在上面的示例中,list2 抛出异常后,list1 中的数据已成功保存并出现在数据库中。
我认为,由于它们位于相同的服务和相同的方法中,使用相同的存储库,因此它们将使用相同的事务,并且 Hibernate 不会提交事务,直到该方法没有错误为止。
但事实似乎并非如此。由于列表一的数据正在提交并且没有回滚。
@Transactional 注释有什么我遗漏的吗?如何使两个保存作为单个事务工作并在任一保存抛出错误时回滚两者?
明月笑刀无情
月关宝盒
相关分类