Spring 프로젝트 진행중 인텔리제이에서 DB연동시 다음과 같은 에러가 발생하였다.
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.
특정버전 이상부터 time zone 설정을 직접 해주어야 한다
SELECT @@GLOBAL.time\_zone, @@SESSION.time\_zone;
SET GLOBAL time\_zone='+9:00'; SET time\_zone='+9:00';
댓글