1. 程式人生 > 資料庫 >java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed

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

mysql8.x版本的資料庫在連線的時候報錯java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed
只要在url的後邊加上allowPublicKeyRetrieval=true即可

jdbc:mysql://localhost:3306/test?serverTimezone=GMT&allowPublicKeyRetrieval=true&useSSL=false&characterEncoding=utf-8;