Error

[Spring boot- 에러 해결] nested exception is org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "SPRING_SESSION" not found; SQL statement

chea-young

1. 에러 메시지

nested exception is org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "SPRING_SESSION" not found; SQL statement

 


2. 원인

 

데이터베이스에 세션 저장소를 사용하기 위한 설정을 한 이후 서버를 킬 때 다음과 오류를 확인하였다.


3. 해결

1
spring.session.jdbc.initialize-schema=always // 추가
 

application.properties에 다음 줄을 추가해주고 다시 springboot 서버를 실행시키면 정상적으로 돌아가는 것을 확인할 수 있다.

 

 


참고 사이트

- https://velog.io/@mmy789/Spring-AWS-9