문제>>
Spring Legacy Project(Spring MVN Project)를 생성하고 MySQL 연결 테스트 중에
아래와 같은 에러
java.sql.SQLException: No timezone mapping entry for 'KST'
-- root-context.xml
<property name="url" value="jdbc:mysql://localhost:3306/javatest2?useSSL=false&serverTimezone=KST" />
해결>
&serverTimezone=KST을 삭제
<property name="url" value="jdbc:mysql://localhost:3306/javatest2?useSSL=false" />
참고>
자바코드에서는 문제가 없음
private static final String URL = "jdbc:mysql://localhost:3306/javatest2?useSSL=false&serverTimezone=KST";
728x90
'Framework > Spring' 카테고리의 다른 글
[Spring] log4j.xml 에러 - Cannot find DTD, log4j.dtd 지정된 파일을 찾을 수 없습니다. (1) | 2021.07.01 |
---|---|
[Spring] 에러: cvc-id.3: A field of identity constraint... web.xml in Eclipse (2) | 2021.06.05 |
[Spring MVC] Eclipse 에서 Import 하기 (0) | 2018.09.03 |
[Spring MVC] Eclipse 안에서 jsp 파일에 한글 설정 (0) | 2018.09.02 |
[Spring MVC] web.xml 한글 처리 (0) | 2018.09.02 |