mysql driver 버전 5에서 버전 6로 변경할 때의 이슈이다.
jdbc url에 serverTimezone도 추가한다.
jdbc driver name을 com.mysql.jdbc.Driver에서 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.
예)
className=com.mysql.cj.jdbc.Driver
url="jdbc:mysql://mydomain:3306/development?useUnicode=true&autoReconnect=true&useTimezone=true&serverTimezone=UTC&connectTimeout=3000&socketTimeout=3000"
...
'general java' 카테고리의 다른 글
multipart/form-data; boundary 예제 - curl. java apache http 라이브러리 (0) | 2017.06.09 |
---|---|
이모티콘 저장시 mysql 관련 히스토리 (0) | 2017.06.05 |
[spring] ClassPathBeanDefinitionScanner 사용과 관련된 spring3에서 spring4의 큰 변화 (0) | 2017.03.27 |
[spring] @Scheduled-fixedDelayString 예시와 annot parse into integer 문제 해결 (0) | 2017.03.11 |
[java] byte[] 쉽게 만들기 (0) | 2017.03.03 |