Springboot
数据库连接时参数设置
url:jdbc:mysql://localhost:3306/healthserverTimezone=UTC&useUnicode=true&characterEncoding=UTF-8
IDEA快捷提示参数问题
spring:
datasource:
username: root
password: root
url: jdbc:mysql://localhost:3306/health?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF-8
driver-class-name: com.mysql.jdbc.Driver
注意用户名和密码的设置应为username和password
data-username: root
上述为错误