Notice
Recent Posts
Recent Comments
«   2024/09   »
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
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

Caused by: org.springframework.jdbc.datasource.init.ScriptStatementFailedException: Failed to execute SQL script statement #1 of file 본문

Spring/오류

Caused by: org.springframework.jdbc.datasource.init.ScriptStatementFailedException: Failed to execute SQL script statement #1 of file

빌드이너프 2023. 11. 25. 13:00

src > main > resources에서 data.sql이라는 더미 데이터를 생성 시 발생하는 오류

Caused by: org.springframework.jdbc.datasource.init.ScriptStatementFailedException: Failed to execute SQL script statement #1 of file

 

스프링 부트 2.5 버전부터 data.sql을 사용한 데이터 초기화를 권장하지 않기 때문에 추가 설정이 필요함

 

src > main > resources 디렉터리에 있는 application.properties 파일에서 해당 코드 추가 후 서버 재시작하면 해결됨

spring.jpa.defer-datasource-initialization=true