[MySQL] Loading class 'com.mysql.jdbc.Driver'. This is deprecated.
오류메세지 Loading class 'com.mysql.jdbc.Driver'. This is deprecated. The new driver class iscom.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.m..
2022.01.16