충분히 쌓여가는
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:00src > 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
'Spring > 오류' 카테고리의 다른 글
Unique index or primary key violation (0) | 2023.11.25 |
---|---|
한글 깨짐 현상 (0) | 2023.11.24 |
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. (0) | 2023.11.20 |
Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. (0) | 2023.11.20 |
Cannot resolve symbol 'SpringBootApplication' (0) | 2023.09.30 |