Moving a Spring Boot web application in production can happen that it will be inactive for several hours (e.g. for a whole night) without making any communication to the database. If you are using MySQL this can lead to a “communications link failure” error like this (from Spring’s log):
2015-07-08 09:16:32.666 WARN 20582 --- [http-nio-8080-exec-6] o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2015-07-08 09:16:32.668 ERROR 20582 --- [http-nio-8080-exec-6] o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure
The last packet successfully received from the server was 29.792.613 milliseconds ago. The last packet sent successfully to the server was 6 milliseconds ago.
Using Hibernate you can solve this problem adding these configuration in the application.properties
file:
src/main/resources/application.properties
spring.datasource.testWhileIdle = true
spring.datasource.timeBetweenEvictionRunsMillis = 3600000
spring.datasource.validationQuery = SELECT 1
A connection test will be performed each hour (3600000 millis) in order to avoid to reach the “wait_timeout” (and leave MySQL closing our connections) if the system is idle (no queries) for a long time.
References
https://tomcat.apache.org/tomcat-7.0-doc/jdbc-pool.html
http://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html
http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-sql.html#boot-features-connect-to-production-database
http://stackoverflow.com/questions/3888776/basicdatasource-connection-time-out-problem-using-mysql
http://stackoverflow.com/questions/30451470/connection-to-db-dies-after-424-in-spring-boot-jpa-hibernate
MySQL wait_timeout and interactive_timeout
http://www.rackspace.com/knowledge_center/article/how-to-change-the-mysql-timeout-on-a-server
http://serverfault.com/questions/355750/mysql-lowering-wait-timeout-value-to-lower-number-of-open-connections
C3P0
http://www.jvmhost.com/articles/hibernate-famous-communications-link-failure-last-packet-sent-successfuly-issue-solved-c3p0
http://shengchien.blogspot.it/2009/10/hibernate-c3p0-and-mysql.html