MySQL8.0 报 Public Key Retrieval is not allowed问题

MySQL8.0 报 Public Key Retrieval is not allowed问题如下:

MySQL8.0 报 Public Key Retrieval is not allowed问题_第1张图片

解决办法:

     在配直文件里加上 &allowPublicKeyRetrieval=true 重启即可,如图所示:

MySQL8.0 报 Public Key Retrieval is not allowed问题_第2张图片

代码如:

spring.datasource.druid.url=jdbc:mysql://localhost:3306/ashe?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&useSSL=false&allowMultiQueries=true&allowPublicKeyRetrieval=true
spring.datasource.druid.username=root
spring.datasource.druid.password=123456

 

你可能感兴趣的:(数据库)