Caused by: java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed解决方法

2023-05-06 21:37:03 浏览数 (1)

Public Key Retrieval is not allowed

1、错误描述

在使用mybatis-plus的代码生成器时,出现如下错误:

代码语言:javascript复制
Caused by: java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed

完整错误如下所示:

2、解决方法

由于是从未遇到过的问题,并且从网上找了很久也不知道到底是个什么解决原理,所以在此只记录解决方法。 解决方法:在mysql的url中添加:allowPublicKeyRetrieval=true 如下所示:

0 人点赞