在 Spring jdbc 模板中维护事务
假设我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
;
到您的 applicationContext 并定义一个引用您的数据源的transactionManager
。请参阅此处和示例此处。
<tx:annotation-driven/>
to your applicationContext and define atransactionManager
which refers to your datasource.See reference here and an example here.