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.
-
[Spring] mysql 연결 에러 해결 (deprecated)Web/Servlet && Spring 2019. 8. 29. 15:32
스프링 실행시 하단에 deprecated가 되었다고 콘솔창에 떴다. 아래와 같은 내용었다. 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. 해결방법은 servlet-context.xml파일의 db를 연결하는 value를 첫번째줄에서 두번째 줄로 변경한다. com.mysql.cj.jdbc.Driver"> 버젼이 업데이트 되면서 경로가 변경되었다.