在 Spring jdbc 模板中维护事务

发布于 2024-11-17 17:45:08 字数 87 浏览 4 评论 0原文

假设我想在 10 个不同的表中插入记录,这应该是原子的,这意味着要么所有插入都应该在所有表中发生,要么不发生。如何在 Spring jdbc 模板中维护此事务?

Suppose i want to insert records in 10 different tables and this should be atomic, menaing either all insert should happen in all tables or none.How can this transcation be maintained in spring jdbc template?

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

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

发布评论

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

评论(1

苹果你个爱泡泡 2024-11-24 17:45:08
  • 在 applicationContext 中定义数据源
  • 创建将使用 JdbcTemplate 执行插入的 dao 类
  • 创建一个调用 dao 类的插入方法的服务类
  • 使用 @Transactional 对服务类进行注释
  • 添加 ; 到您的 applicationContext 并定义一个引用您的数据源的 transactionManager

请参阅此处和示例此处

  • Define your datasource in your applicationContext
  • Create your dao class that will do your inserts using JdbcTemplate
  • Create a service class that calls the insert methods of your dao class
  • Annotate the service class with @Transactional
  • Add <tx:annotation-driven/> to your applicationContext and define a transactionManager which refers to your datasource.

See reference here and an example here.

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