인텔리제이 Mysql 연결오류, java.lang.RuntimeException: com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value 'KST' is unrecognized or represents more than one time zone. You must configure either the server or ..
개발이야기 2019. 4. 16. 17:48인텔리제이에서 Mysql 데이터소스를 연결하던중 위와 같은 오류가 발생하였다.
JDBC에 타임존 정보를 추가로 설정한뒤 해당오류를 처리할 수 있다.
1 | jdbc:mysql://localhost:3306/test?serverTimezone=UTC | cs |
현재 우리나리 기준으로 사용할경우는 ?serverTimezone=Asia/Seoul 사용해주면 된다.
'개발이야기' 카테고리의 다른 글
objc[913]: Class JavaLaunchHelper is implemented in both JDK Error (0) | 2019.04.22 |
---|---|
소셜미디어 연동하기 개발자센터 - 페이스북 (0) | 2019.04.17 |
스프링부트에서 YAML 사용방법 (0) | 2019.04.16 |
Spring Boot HTTPS 설정하기 (0) | 2019.04.13 |
Spring HandlerMethodArgumentResolver 사용하기 (0) | 2019.04.12 |