Home (MySQL) Loading class `com.mysql.jdbc.Driver'. This is deprecated..
Post
Cancel

(MySQL) Loading class `com.mysql.jdbc.Driver'. This is deprecated..

1. 내용


1
2
3
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.

2. 해결


1
2
3
4
5
6
7
■ 원인
- MySQL 연동 시, 버전에 따라 Driver 값이 다르다고 한다.
- (MySQL 8 미만) com.mysql.jdbc.Driver 
- (MySQL 8 이상) com.mysql.cj.jdbc.Driver

■ 조치
본인의 MySQL 버전에 맞게 적용해주도록 하자
This post is licensed under CC BY 4.0 by the author.