Notice
Recent Posts
Recent Comments
Link
나의 GitHub Contribution 그래프
Loading data ...
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

Code in Life

[springboot] PreparedStatementCallback; bad SQL grammer [DELETE FROM SPRING_SESSION WHERE EXPIRY_TIME < ?] 본문

에러 및 이슈

[springboot] PreparedStatementCallback; bad SQL grammer [DELETE FROM SPRING_SESSION WHERE EXPIRY_TIME < ?]

퓨끼 2020. 12. 25. 14:14

환경 : Windows10 Pro

에러 : org.springframework.jdbc.BadSqlGrammerException : PreparedStatementCallback; bad SQL grammer [DELETE FROM SPRING_SESSION WHERE EXPIRY_TIME < ?]

 

<dependency>
	<groupId>org.springframework.session</groupId>
    	<artifactId>spring-session-jdbc</artifactId>
</dependency>

 

build.gradle에 spring-session-jdbc 의존성을 제거하니 해결되었다. (위는 pom.xml 형식으로 써놨음)

 

Comments