Spring

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.

나쁜천사1004 2024. 3. 14. 11:30

Spring boot에서 com.mysql.jdbc.Driver 드라이브를 사용하지 않는데 아래와 같이 로그에서 오류가 발생 하여 처리하는 

방법을 정리 해본다.

 

 

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

 

프로젝트/resources 폴더 안에 log4jdbc.log4j2.properties 파일을 작성 한 후 아래 소스 추가.

 

log4jdbc.auto.load.popular.drivers=false
log4jdbc.drivers=com.mysql.cj.jdbc.Driver

 

 

반응형