Stay Hungry Stay Foolish

TIL

[스프링 ERROR 해결] MySQL 연동

dev스카이 2023. 10. 22. 16: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.

 

해결 방법

com.mysql.jdbc.Driver가 옛날 버전이기 때문에 com.mysql.cj.jdbc.Driver로 바꿔달라는 내용이다.

따라서 위와 같이 변경해주면 실행이 잘 된다.