Connection lost overnight (spring boot + mysql)

后端 未结 3 818
温柔的废话
温柔的废话 2020-12-19 01:47

My spring boot application always show me this whitelabel error in the morning: Could not open JPA EntityManager for transaction; nested exception is javax.persistence.Persi

3条回答
  •  孤城傲影
    2020-12-19 02:34

    Check this answer: Spring Boot JPA - configuring auto reconnect

    In short, you'll need:

    spring.datasource.testOnBorrow=true
    spring.datasource.validationQuery=SELECT 1
    

提交回复
热议问题