본문 바로가기
🍃 𝗦𝗽𝗿𝗶𝗻𝗴 𝗕𝗼𝗼𝘁

[SpringBoot] 'com.mysql.jdbc.Drvier'. This is deprecated 해결방법

by 비타민찌 2022. 7. 11.
728x90

문제 상황:

Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

 

일단 deprecated는 에러가 아니다.. (당연!)

 

읽어보면 com.mysql.jdbc.Driver가 옛날 버전이니까 com.mysql.cj.jdbc.Driver로 바꿔달라는 내용.

application.yml 파일에 다음처럼 수정 후 다시 실행하면 문제가 해결된다.

driver-class-name: com.mysql.cj.jdbc.Driver
728x90

댓글