[MySQL] Loading class 'com.mysql.jdbc.Driver'. This is deprecated.
2022. 1. 16. 23:01ㆍ오류모음
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.
mysql driver가 업데이트 되면서 클래스 경로가 바뀐듯 함.
jdbc 리플렉션 해올때의 클래스 경로를 com.mysql.cj.jdbc.Driver
로 바꿔주면 해결됨.
public static Connection getConnection() {
try {
Class.forName("com.mysql.cj.jdbc.Driver").newInstance();
return DriverManager.getConnection("jdbc:mysql://localhost:3306/db",
"id", "pw");
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
728x90