报错:java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed

我试使用nacos配合springboot项目,突然连接不上数据库。

报错截图:

 

解决方法:

只需在配置数据源的时候加上三个配置:

    url: jdbc:mysql://localhost:3306/cloud_order?useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC

获取页面成功:

报错:java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed_第1张图片

 

你可能感兴趣的:(微服务,mysql,java,mybatis)