我的项目是springboot项目,其它项目也可以参考。启动项目时,报错信息显示:

HikariPool-1 - Exception during pool initialization:表示springboot项目启动异常

Access denied for user 'root'@'localhost' (using password: YES):表示数据库连接异常

我的解决办法:

检查数据库连接相关配置是否正确(name,pwd,url)

特别注意:#mysql数据库配置文件 Mysql8以上,springboot2.1以上版本,必须加cj与时区

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/mybatis_plus?serverTimezone=GMT%2B8
spring.datasource.username=root
spring.datasource.password=000000

mysql5

spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/mybatis_plus
spring.datasource.username=root
spring.datasource.password=123456

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐