jdbctemplate 和乐观锁
在项目中我将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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您必须手动将乐观锁定行为添加到更新查询中。
Nope, you'll have to add the optimistic locking behavior to your update queries manually.