需要 Spring 3 中的事务处理示例
我需要分步指南来处理 spring sqltemplate 中的事务。事务处理必须在我的项目中实现。指导我。需要配合SqlTemplate使用事务管理。
I need step by step guide to handle transactions in spring sqltemplate. Transaction handling has to be implemented in my project. Guide me. Need to use the transaction Managment with SqlTemplate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议您使用 @Transaction 注释而不是手动编码。您可以按照此处的示例进行操作。对于其最佳实践,您可以阅读此处。如果您打算花几个小时学习 Spring Data JPA,大多数情况下你几乎不需要手动处理事务。
谢谢。
I suggest you use @Transaction annotation than code it manually. You may follow example here. For its best practice, you may read here. If you plan to spend few hours to study Spring Data JPA, you almost no need to handle transaction manually for most cases.
Thanks.
如果您正在使用程序化事务,那么使用下面的
程序化意味着您拥有围绕业务代码的事务管理代码。
这提供了极大的灵活性,但难以维护。
声明性意味着将事务管理与业务代码分开。
您可以使用注释或基于 XML 的配置。
声明式事务管理允许消除 Java 代码对事务框架的任何依赖。
提供事务支持的四个参与者是事务管理器、代理工厂、事务拦截器和一组事务属性。下面是一个例子
if you are using Programmatic Transactions then use below
Programmatic means you have transaction management code surrounding your business code.
This gives extreme flexibility, but is difficult to maintain.
Declarative means you separate transaction management from the business code.
You can use annotations or XML based configuration.
Declarative Transaction Management allows to eliminate any dependencies on the transaction framework from the Java code.
The four participants to provide the transaction support are transaction manager, proxy factory, transaction interceptor, and a set of transaction attributes. below is an example