Spring을 이용해서 샘플 프로젝트를 만들 때 매번 DB를 초기화하는게 상당히 귀찮은데 이런 경우 초기화 스크립트를 이용하면 아주 쉽게 문제를 해결할 수 있다. schema.sql과 data.sql 초기화 파일 준비 먼저 두 개의 초기화 파일을 resoures/init_data 경로에 위치시키자. 첫번 째 초기화 파일은 db의 구조를 담당하는 schema 파일이다. drop table todo if exists ; create table todo( id number primary key auto_increment, content varchar(100) not null, done char(1) default 'F' ); 다음은 초기 데이터 파일을 설정하는 data.sql이다. insert into tod..
[spring]SQL script를 활용한 DB 초기화
Spring을 이용해서 샘플 프로젝트를 만들 때 매번 DB를 초기화하는게 상당히 귀찮은데 이런 경우 초기화 스크립트를 이용하면 아주 쉽게 문제를 해결할 수 있다. schema.sql과 data.sql 초기화 파일 준비 먼저 두 개의 초기화 파일을 resoures/init_data 경로에 위치시키자. 첫번 째 초기화 파일은 db의 구조를 담당하는 schema 파일이다. drop table todo if exists ; create table todo( id number primary key auto_increment, content varchar(100) not null, done char(1) default 'F' ); 다음은 초기 데이터 파일을 설정하는 data.sql이다. insert into tod..
2022.12.03