使用yml配置文件的时候出现这个错误
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
data-username: root
data-password: 333
url: jdbc:mysql://localhost:3306/cloud_flight?useSSL=false&serverTimezone=UTC
改成这样
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
username: root
password: 333
url: jdbc:mysql://localhost:3306/cloud_flight?useSSL=false&serverTimezone=UTC
就解决了
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)