使用 Java 将 SQL 查询保存在文件中的数据源?
我有 2 个相同的数据库,我想将 Java 脚本针对第一个数据库(我使用 Spring Jdbc)运行的所有查询保存在一个文件中,以便我可以针对第二个数据库运行。是否可以?
谢谢!
I have 2 identical databases and I would like to save all the queries that a Java script runs against the first one (I use Spring Jdbc) in a file that I could run against the second database. Is it possible?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用日志记录代理驱动程序来记录发送到第一个数据源的所有语句。
一种选择是 log4jdbc。页面底部列出了其他选项。只需根据您的喜好配置它,然后使用生成的日志来提供您的第二个数据库。
You can use a logging proxy driver to log all the statements sent to the first datasource.
One option is log4jdbc. There are other options listed on the bottom of the page. Just configure it to your liking and then use generated logs to feed your second database.