CODEDRAGON ㆍDevelopment/Java
오류 메시지
Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'.
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. java.sql.SQLException: The server time zone value '????α? ????' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support. at |
해결방법
아래와 같이 Driver명을 변경해 줍니다.
수정전 |
try { Class.forName("com.mysql.jdbc.Driver"); } catch (ClassNotFoundException e) { e.printStackTrace(); } |
수정후 |
try { Class.forName("com.mysql.cj.jdbc.Driver"); } catch (ClassNotFoundException e) { e.printStackTrace(); } |
'Development > Java' 카테고리의 다른 글
CSV -> arff 파일 변환하기 (0) | 2019.12.30 |
---|---|
Weka - Attribute data type (0) | 2019.12.24 |
LAB - Lotto 프로그램 - HashSet (0) | 2019.12.12 |
LAB - 다이아몬드별, 모래시계 출력하기 (0) | 2019.12.12 |
Machine Learning Open Source Software (MLOSS) (0) | 2019.12.12 |