1. 程式人生 > 資料庫 >com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Public Key Retrieval is not al

com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Public Key Retrieval is not al

一開始以為是jar沒導進來  maven clear    install 一下 還是那樣  

找了一些解決方案

 

發現是MySQL 8.0 版本 的問題 

需要在後面加  allowPublicKeyRetrieval=true

一開始是  

url: jdbc:mysql://localhost:8858/*****?useUnicode=true&characterEncoding-utr-8&useSSL=false

更正後 後面 加上

&allowPublicKeyRetrieval=true

可執行-->