Hikari 连接超时时如何重新启动 Spring Boot 应用程序?
我们有 Spring Boot 应用程序 &低于异常。解决方案是仅重新启动 Spring Boot 应用程序。
问题 1:我如何知道我遇到了异常,现在需要重新启动应用程序?
问题2:如何重启spring boot应用?
异常:
获取 JDBC 连接失败;嵌套异常是 java.sql.SQLTransientConnectionException:HikariPool-1
We have spring boot application & getting below exception. Solution for that is only spring boot application restart.
Question 1 : How I come to know that I am getting below exception and now need application restart?
Question 2 : How to restart the spring boot application ?
Exception:
Failed to obtain JDBC connection ; nested exception is a java.sql.SQLTransientConnectionException:HikariPool-1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在
application.properties
中使用它:如果您只想重新启动终止 tomcat 服务器,您可以使用以下命令:
You can use this in your
application.properties
:and if you only want to restart kill the tomcat server you can use this command:
以下配置对我有用,因此也不需要重新启动。感谢大家的帮助。
spring.datasource.hikari.connection-timeout = 600000
spring.datasource.hikari.maximum-pool-size = 15
spring.datasource.hikari.max-lifetime = 1800000
Bellow configuration worked for me so don't need to restart also . Thanks everyone for your help.
spring.datasource.hikari.connection-timeout = 600000
spring.datasource.hikari.maximum-pool-size = 15
spring.datasource.hikari.max-lifetime=1800000