Access denied for user ''@'localhost' (using password: NO) (本人亲测已解决!)

本人写application.properties文件的时候,直接用了idea的自动提示,结果数据库配置文件中不小心多了个“-”,导致以上的报错提示。接下来直接看图:

Access denied for user ''@'localhost' (using password: NO) (本人亲测已解决!)_第1张图片

备注:将图中画红框框的部分换成下方对应的格式就可以。特别提醒下各位,driverClassName=com.mysql.cj.jdbc.Driver

# mysql数据库配置(供参考)

spring.datasource.url=jdbc:mysql://127.0.0.1:3306/***?useUnicode=true&characterEncoding=UTF8&useSSL=false&autoReconnect=false&failOverReadOnly=false&serverTimezone=GMT%2B8

spring.datasource.username=root

spring.datasource.password=******

spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver

spring.datasource.type=com.alibaba.druid.pool.DruidDataSource

 若有疑问请在下方留言。。。

你可能感兴趣的:(Access denied for user ''@'localhost' (using password: NO) (本人亲测已解决!))