我已经将代码从Spring 4.2.4迁移到了Spring Boot,这是我的连接设置
spring.datasource.url=jdbc:mysql://localhost:3306/myapplication
spring.datasource.username=test
spring.datasource.password=test
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
spring.jpa.hibernate.naming.implicit-strategy = org.hibernate.boot.model.naming.Hibernate5ImprovedNamingStrategy
spring.jpa.properties.hibernate.format_sql = true
spring.jpa.properties.hibernate.id.new_generator_mappings=false
spring.jpa.properties.hibernate.jdbc.time_zone = UTC
所以我面临两个问题: 1.有时,用户密码变为空。 2.与数据库的连接失败。
ERROR: HikariPool-1 - Connection is not available, request timed out after 30000ms.
我没有将HikariCP保留在POM中,但在日志中显示了Hikari
任何人都可以针对这些问题提供一些见解/投入。
谢谢, 哈里