본문 바로가기
Java 웹 프로그래밍

public key retrieval is not allowed 에러

by irerin07 2020. 2. 28.
728x90

MySQL 8.x이상 버전부터 발생하는 에러

 

기존에 사용하던 jdbc 주소에 다음과 같이 추가해주면 해결된다.

&allowPublicKeyRetrieval=true&useSSL=false
spring.datasource.url= jdbc:mysql://localhost:3306/testdb?useSSL=false&allowPublicKeyRetrieval=true

 

728x90