您好,登錄后才能下訂單哦!
在Spring Boot JPA連接Mysql的過程中,經過 8小時后會發現斷連的情況。application.properties配置如下(此坑我跳過,歡迎入坑):
spring.datasource.url=jdbc:mysql://localhost/test spring.datasource.username=dbuser spring.datasource.password=dbpass spring.datasource.driver-class-name=com.mysql.jdbc.Driver
原因分析:
mysql在默認的情況下,如果發現一個連接空閑時間超過8小時,將會在數據庫端自動關閉這個連接。(mysql wait_timeout 為8小時)。
解決方式:
1 . Mysql 5 版本之前可以通過在URL后面加入autoReconnect=true,如:
spring.datasource.url=jdbc:mysql://localhost/test?autoReconnect=true
2 . application.properties文件中加入:
spring.datasource.test-on-borrow=false spring.datasource.test-while-idle=true spring.datasource.time-between-eviction-runs-millis= 3600000
3 . 粗暴點的直接修改 wait_timeout 時間:
show global variables like 'wait_timeout';
推薦第二種方式
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。