본문 바로가기

IDE & Tools/Intelij

[SpringBoot] .sql 파일 추가 후 실행 시 오류 해결 (h2DB, application.properties)

728x90
반응형

오류 문구

Caused by: org.springframework.jdbc.datasource.init.ScriptStatementFailedException: Failed to execute SQL script statement #1 of URL [file:/경로/data.sql]: INSERT INTO article(id, title, content) VALUES (1,'가가가가','1111'); nested exception is org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "ARTICLE" not found; SQL statement:

 

해결 방법

application.properties 파일에 다음 문구를 추가... 해결 ㅎㅎㅎ

spring.jpa.defer-datasource-initialization=true
728x90
반응형