使用 Hibernate 和 MySQL 处理 upsert 的优雅方式
我目前正在开发基于 Hibernate 和 MySQL 的批量导入功能。我的目标是为多个表提供更新插入功能。我发现自己编写了大量代码来处理通过键查看该行是否存在并分支到正确的方法。我想知道是否有更好的方法,即类似于 SQL-Server SSIS 附带的工具,但适用于 Hibernate 和 MySQL。您使用过哪些工具或优雅的解决方案来通过 hibernate 和/或 MySQL 处理批量更新插入?
I'm currently working on a batch import feature that sits on top of Hibernate and MySQL. My goal is to have Upsert functionality for several tables. I'm finding myself writing a lot of code to deal with seeing if the row exists by key and branching to right method. I was wondering if there might be a better way, i.e. something analogous to the tools that come with SQL-Server SSIS but for Hibernate and MySQL. What tools or elegant solutions have you used to handle bulk Upserts with hibernate and/or MySQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看 MySQL 的 ON DUPLICATE KEY UPDATE 功能:
https ://dev.mysql.com/doc/refman/8.0/en/insert-on-duplicate.html
You might look into MySQL's ON DUPLICATE KEY UPDATE feature:
https://dev.mysql.com/doc/refman/8.0/en/insert-on-duplicate.html