Notice
Recent Posts
Recent Comments
Tags
- jquery 바코드생성
- ViewBag
- XSS방어
- asp.net core Select
- 파일업로드 체크
- javascript redirection
- XSS PHP
- 타임피커
- asp.net Select
- TempData
- 강제이동
- jquery 바코드
- 맥 오라클설치
- 말줄임표시
- ViewData
- javascript 바코드스캔
- 바코드 생성하기
- javascript 유효성체크
- 하드 윈도우 복사
- asp.net dropdownlist
- Mac Oracle
- 바코드 스캔하기
- django 엑셀불러오기
- SSD 복사
- ASP.Net Core 404
- 404에러페이지
- php 캐쉬제거
- 파일업로드 유효성체크
- 하드 마이그레이션
- javascript 바코드 생성
웹개발자의 기지개
[Spring Boot] 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 - time zone 에러 본문
Java/Spring Boot
[Spring Boot] 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 - time zone 에러
http://portfolio.wonpaper.net 2023. 7. 31. 14:03
1
2
3
4
5
6
7
|
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 com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:127) ~[mysql-connector-java-8.0.11.jar:8.0.11]
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:95) ~[mysql-connector-java-8.0.11.jar:8.0.11]
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:87) ~[mysql-connector-java-8.0.11.jar:8.0.11]
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:61) ~[mysql-connector-java-8.0.11.jar:8.0.11]
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:71) ~[mysql-connector-java-8.0.11.jar:8.0.11]
|
cs |
jdbc:mysql://localhost:3306/spring?characterEncoding=UTF-8&verifyServerCertificate=false&useSSL=false&serverTimezone=UTC
참고 : https://devuna.tistory.com/47
'Java > Spring Boot' 카테고리의 다른 글
Comments