The server time zone value '���ѹα� ǥ�ؽ�' is unrecognized or represents more than one time zone.
본문 바로가기
IT/JAVA

The server time zone value '���ѹα� ǥ�ؽ�' is unrecognized or represents more than one time zone.

by DHan- 2019. 12. 23.
728x90

타임존 확인 


1
SELECT @@global.time_zone, @@session.time_zone;
 

위와 같은 에러는 타임존을 설정하지 않은 경우 발생됩니다. 

 

 

타임존 변경


자바프로젝트에서 드라이버와 MySQL를 연결하는 부분에 ?characterEncoding=UTF-8&serverTimezone=UTC를 삽입합니다.

1
Connection con = DriverManager.getConnection ("jdbc:mysql://Server/DBname?characterEncoding=UTF-8&serverTimezone=UTC""id""pw");

https://yenaworldblog.wordpress.com/2018/01/24/java-mysql-%EC%97%B0%EB%8F%99%EC%8B%9C-%EB%B0%9C%EC%83%9D%ED%95%98%EB%8A%94-%EC%97%90%EB%9F%AC-%EB%AA%A8%EC%9D%8C/

 

java mysql 연동시 발생하는 에러 모음

사용 라이브러리 (pom.xml) org.mybatis mybatis 3.4.5 <dependency…< p=""> </dependency…<>

yenaworldblog.wordpress.com

 

728x90

'IT > JAVA' 카테고리의 다른 글

[JAVA] 스프링에 대한 이해  (0) 2019.12.23
[JAVA] HttpServlet의 이해  (0) 2019.12.23
[JAVA] JAVA Development Tip [ JDBC ]  (0) 2019.12.19
[JAVA] MySQL의 JDBC driver 설치하기  (1) 2019.12.19
[JAVA] GenericServlet의 이해  (0) 2019.12.18

댓글