@Transactional注解

发布于 2024-12-05 08:44:41 字数 129 浏览 1 评论 0原文

之间有什么区别:

  • 向整个类添加“@Transactional”注释
  • 为每个方法添加“@Transactional”注释?

使用 spring 和 Hibernate ?

is there any difference between:

  • add "@Transactional" annotation to whole class
  • add for every single method "@Transactional" annotation ?

Using spring and Hibernate ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无需解释 2024-12-12 08:44:41

基本上,如果您使用 @Transactional 所有方法都将是事务性的。
如果没有,您可以注释为 @Transactional 仅那些您想要的方法。此外,您可以为每个方法指定不同的属性,例如isolationpropagationtimeout,...

另外,看看这个问题,这可能是它的重复: 源代码中的 Hibernate 事务注释 - 类和方法级别使用之间的差异?

Basically, if you annotate the class with @Transactional all methods will be transactional.
If you don't, you can annnotate as @Transactional only those methods you want to. Additionally, you can specify different attributes for each method, like isolation, propagation, timeout, ...

Also, take a look at this question, this is a possible duplicate of it: Hibernate transaction annotations in source — difference between class and method level use?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文