Public Key Retrieval is not allowed problem occurred when upgrading mybatisplus to 3.5.3.1

error message

 Reason: mysql8 and above versions need to establish an SSL connection. The default useSSL=true

There are two solutions

1. Add allowPublicKeyRetrieval=true (not recommended)

 2. Delete useSSL=false or set useSSL=true (recommended)

 

Guess you like

Origin blog.csdn.net/crazy1013/article/details/127652098