[리팩토링]__**Spring Boot에서 여러 SQL 스크립트 순차적 실행하기**__

스크립트 파일 준비

-- truncate.sql
TRUNCATE TABLE your_table_name;

-- schema.sql
CREATE TABLE your_table_name (
    ...
);
  • truncate.sql 파일 → schema.sql 로 table create 순서

application.properties 파일에 스크립트 경로 설정

spring.datasource.schema=classpath:truncate.sql,classpath:schema.sql


Uploaded by N2T