具有自动重新连接功能的 JDBC 连接
我正在使用 JDBC 连接到数据库服务器。 连接是通过无线网络进行的,有时可能会很危险。 当连接丢失时,我需要关闭并重新启动应用程序。
有谁有一些代码示例,我可以在其中编写某种包装器来自动重新连接并重新运行最后一个查询?这样可以省去很多麻烦。
我只是不确定它应该/如何实施。 也许已经有一些可用的东西了?
I am using JDBC to connect to a database server.
The connection is over a wireless network and can be dodgy at times.
At the moment when the connection is lost I need to close and restart the application.
Does anyone have some examples of code where I could write some sort of wrapper to automatically reconnect and rerun the last query? This would save a lot of hassles.
I am just not sure how it should/could be implemented.
Maybe there is already something available?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
即使您使用应用程序服务器提供的 JDBC 连接池或 apache commons 池,也值得编写重试逻辑。根据应用程序服务器的配置,应用程序服务器将清除所有池连接并重新创建一组新的连接。这是一个示例:
Even if you use JDBC connection pool either application server provided or apache commons pooling, it is worthwhile to code a retry logic. Based on the configuration of your application server, the app server would purge all the pooled connections and recreate a fresh set of connections. Here is a sample:
让连接池为您处理这个问题,其中许多可以验证连接。 DBCP 也是如此,它有一个
testOnBorrow
参数,强制对使用前的每个连接。该参数的默认值为true
,只需将validationQuery
设置为非空字符串即可生效。因此,设置validationQuery
就可以了!查看文档。Let a connection pool handle this for you, many of them can validate a connection. So does DBCP which has a
testOnBorrow
parameter that forces a sanity check on every connection before it's used. The default value of this parameter istrue
, it just needsvalidationQuery
to be set to a non-null string to have any effect. So set thevalidationQuery
and there you go! Check out the documentation.查看 Oracle 的通用连接池 (UCP) 库。它们完全兼容 JDBC 4.0,并实现 isValid() 调用来检查连接是否处于活动状态。执行此检查很容易,如果重新连接错误,则运行您的查询。
Oracle UCP 下载页面
虽然我知道您没有'不要询问连接池,无论如何您可能应该使用连接池,因此这将对您有双重帮助。
Check out Oracle's Universal Connection Pool (UCP) libraries. They are fully JDBC 4.0 compliant and implement the
isValid()
call to check if a connection is live. It's easy to do this check, if false reconnect, then run your query.Oracle UCP Download Page
While I know you didn't ask about connection pools, you should probably be using one anyway so this will help you twofold.