jdbctemplate 和乐观锁

发布于 2024-09-02 11:04:31 字数 564 浏览 5 评论 0原文

在项目中我将Hibernate和Spring的jdbctemplate混合使用。我添加了乐观锁定。 Hibernate 非常适合版本控制,但现在我必须转换所有这些 jdbctemplate 代码才能使用版本控制。

有没有类似LockingJdbcTemplate(如SimpleJdbcTemplate)的东西?我在想我可以实现一个通用的更新方法,


update(String tableName, String columnsSql, String whereSql, Long version, Object... params)

我可以:

  • 将 version=version+1 附加到 columnSql
  • 附加 version=?到 whereSql
  • 将版本号添加到参数中的正确位置(单独的参数强制传递该值)
  • 检查是否有 1 个项目已更新并抛出 StaleObjectStateException 否则

是否有任何库可以包装 jdbctemplate 并为我做类似的事情?不想发明现有的东西......:)

In the project I'm in Hibernate and Spring jdbctemplate are mixed. I added optimistic locking. Hibernate works great with versioning but now I have to tansform all this jdbctemplate code to use versioning too.

Is there something like LockingJdbcTemplate (like SimpleJdbcTemplate)? I was thinking I could implement a generic update method


update(String tableName, String columnsSql, String whereSql, Long version, Object... params)

Where I could:

  • append version=version+1 to columnSql
  • append version=? to whereSql
  • add version number to correct place within params (separate param is forcing to pass that value)
  • Check that exactly 1 item was updated and throw StaleObjectStateException otherwise

Is there any library that would wrap jdbctemplate and do something similar for me? Don't want to invent something that exists... :)

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

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

发布评论

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

评论(1

ㄖ落Θ余辉 2024-09-09 11:04:31

不,您必须手动将乐观锁定行为添加到更新查询中。

Nope, you'll have to add the optimistic locking behavior to your update queries manually.

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