springboot无法连接数据库问题

tech2023-02-08  118

springboot使用yml配置文件配置数据库连接信息时,如果数据库密码为纯数字,需要加双引号(""),否则会报Access denied for user ‘root’@'localhost’错误。

spring: application: name: crowd-mysql datasource: url: jdbc:mysql://localhost:3306/springboot?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT username: root password: "123456" driver-class-name: com.mysql.cj.jdbc.Driver type: com.alibaba.druid.pool.DruidDataSource

在这里卡了好久,一直以为是数据库连接池的问题,后知后觉,这你找谁说理去啊!

最新回复(0)