mysql连接 Public Key Retrieval is not allowed

问题现象:

mysql8+版本JDBC连接,项目启动报错

jdbc:mysql://localhost:3306/mybats_plus_demo?useUnicode=true&useSSL=false&characterEncoding=utf8&serverTimezone=Asia/Shanghai

问题处理:

mysql连接配置添加 allowPublicKeyRetrieval=true

jdbc:mysql://localhost:3306/mybats_plus_demo?useUnicode=true&useSSL=false&characterEncoding=utf8&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true