Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 네이버스마트 에디터
- spring form tag
- MYSQL
- 웹 플랫폼 설치 관리자
- json
- 스크립트
- 한글
- SSL
- 이클립스
- 날짜
- DB
- HTML5
- 전자정부 표준프레임워크
- Oracle
- 톰캣
- 문자열
- switch
- php
- maven
- RADIO
- exception
- @RequestBody
- jquery
- checbox
- JSTL
- java
- 호환성
- 오라클
- null
- html
Archives
- Today
- Total
개인적인 정리
'com.mysql.jdbc.Driver'. This is deprecated 본문
전자정부표준프레임워크/Exception 및 Error
'com.mysql.jdbc.Driver'. This is deprecated
yeon.Biju 2020. 2. 17. 16:39Loading 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 버전을 올리고 나니 위와 같은 오류가 발생
드라이버명을 바꿔준다.
Globals.DriverClassName=com.mysql.cj.jdbc.Driver
-->
Globals.DriverClassName=com.mysql.cj.jdbc.Driver
* 그리고 서버와 연결하는 쿼리 스트링에 serverTimezone=UTC 부분을 추가해줘야 하는 것 같다. 추가해주지 않으면 연결이 되지 않는다고 한다.
예시)
jdbc:mysql://1.1.1.1:3306/디비명?serverTimezone=UTC
그리고 이렇게 하니 log4sql은 사용이 안되는 것 같다.
log4sql 날짜가 너무 오래전이라 그런 듯.
https://sourceforge.net/projects/log4sql/files/
* MySQL Driver 다운로드 받는 방법
https://web-obj.tistory.com/320
'전자정부표준프레임워크 > Exception 및 Error' 카테고리의 다른 글
Cannot paste the clipboard contents into the selected elements. (0) | 2020.09.19 |
---|---|
org.apache.maven.plugins:maven-resources-plugin:jar:2.6 (0) | 2020.08.25 |
Received fatal alert: protocol_version (0) | 2020.08.25 |
501 HTTPS Required. (0) | 2020.08.25 |
The import com.mysql cannot be resolved (0) | 2020.02.17 |
Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986 (0) | 2019.03.15 |
Neither BindingResult nor plain target object for bean name (0) | 2019.01.30 |
The specified JRE installation does not exist (0) | 2018.12.14 |
Comments