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 | 31 |
Tags
- 2961 도영이가 만든 맛있는 음식
- 14711 타일 뒤집기
- 2961 java
- Problems occurred while performing provisioning operation
- django httpd error
- 1188 java
- django settings.py
- 2661 java
- django 프로젝트 시작
- 18233 java
- django windows 배포 에러
- The requested operation has failed!
- APPEND_SLASH = FALSE
- 18233 러버덕
- django 웹 페이지
- django
- 공유기 원격 설정
- 18233 비트마스킹
- django apache deploy error
- apache pythonpath
- 2661 좋은 수열
- django The requested operation has failed!
- 원격 연결 포트 포워딩
- 2643 색종이 올려 놓기
- windows 원격 연결 설정
- 14711 java
- 1188 음식 평론가
- windows apache wsgi 에러
- 2643 java
- java di
Archives
라이브러리는 도서관 아닌가요
Loading class 'com.mysql.jdbc.Driver'. This is deprecated. The new driver class is 'com.mysql.cj.jdbc.Driver'. 본문
Spring/Spring 참고 내용
Loading class 'com.mysql.jdbc.Driver'. This is deprecated. The new driver class is 'com.mysql.cj.jdbc.Driver'.
veryhi 2021. 10. 25. 18:23
Spring Boot에서 종종 버전 차이로 만날 수 있는 에러이다.
있을 수 있는 경우 1
logback-spring을 사용하기 위해 설정을 하고 실행하면,
이는 Mysql의 버전이 향상되어 해당 driver의 명칭이 바뀌었기 때문이다.
이 때 log4jdbc가 자동으로 선택한 드라이버를 변경하여 지정하기 위해 코드를 추가해주어야 한다.
아래가 기존의 코드이다.
# log4jdbc.log4j2.properties 파일 내용
log4jdbc.spylogdelegator.name = net.sf.log4jdbc.log.slf4j.Slf4jSpyLogDelegator log4jdbc.dump.sql.maxlinelength = 0
해당 코드 아래에 다음의 추가한다.
log4jdbc.drivers=com.mysql.cj.jdbc.Driver
log4jdbc.auto.load.popular.drivers=false
혹시나 재시작시켜도 동작하지 않는다면, IDE를 종료하고 다시 실행!
'Spring > Spring 참고 내용' 카테고리의 다른 글
Comments