码迷,mamicode.com
首页 > 数据库 > 详细

Springboot:Springboot+mysql5.7搭建服务,超过8小时连接mysql失败

时间:2020-07-03 15:41:06      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:lan   color   报错信息   sele   callback   strong   arc   erro   tor   

报错信息

2017-03-12 03:00:02.539 ERROR 9311 --- [nio-9000-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed;
 nested exception is org.springframework.dao.RecoverableDataAccessException: StatementCallback; SQL [DELETE FROM search_product]; 
  The last packet sent successfully to the server was 86,395,487 milliseconds ago. 
You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property ‘autoReconnect=true‘ to avoid this problem.] with root cause

 

经查发现原来是mysql默认会将8个小时内没有操作过的数据库连接断开。
项目是springboot。
找到一个解决办法,在application.properties中设置datasource的时候,加入如下设置:
(testWhileIdle,validationQuery,timeBetweenEvictionRunsMillis)

#设置每隔一小时向mysql进行一次连接可用确认
srping.dataSource.bySearch.testWhileIdle = true
spring.dataSource.bySearch.validationQuery=SELECT 1
spring.dataSource.bySearch.timeBetweenEvictionRunsMillis = 3600000

 

文章转载至:https://blog.csdn.net/u012859681/article/details/62051509?utm_source=blogxgwz5

Springboot:Springboot+mysql5.7搭建服务,超过8小时连接mysql失败

标签:lan   color   报错信息   sele   callback   strong   arc   erro   tor   

原文地址:https://www.cnblogs.com/nhdlb/p/13230398.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!