몽땅뚝딱 개발자

[JAVA] 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. 본문

에러일지/JAVA

[JAVA] 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.

레오나르도 다빈츠 2021. 6. 15. 00:24

 

에러

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.

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.

 

 

 

 

원인

최신 드라이버가 아니기 때문에 생긴 오류이다.

 

 

 

 

해결

application.properties에서 [spring.datasource.driver-class-name]의 값을 "com.mysql.cj.jdbc.Driver"로 바꾼다.

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

 

 

 


개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.

 

Comments