반응형
* H2 Database 파일 속성
jdbc:h2:file:~/test
* H2 Database 메모리 속성(휘발성)
jdbc:h2:mem:test
* SpringBoot application.properties DB설정
spring.datasource.url=jdbc:h2:mem:test
spring.datasource.username=sa
spring.datasource.password=
spring.datasource.driverClassName=org.h2.Driver
* spring.jpa.hibernate.ddl-auto 설정
spring.jpa.hibernate.ddl-auto=update
create: 기존테이블 삭제 후 다시 생성(DROP + CREATE)
create-drop: create와 같으나 종료시점에 테이블 DROP
update: 변경분만 반영(운영DB에는 사용하면 안됨)
validate: 엔티티와 테이블이 정상 매핑되었는지만 확인
none: 사용하지 않음
반응형
'Devlopment > Spring' 카테고리의 다른 글
Spring Security custom expression (0) | 2017.02.01 |
---|---|
Spring Security 관련 레퍼런스 정리 (0) | 2017.02.01 |
Jackson에서 null string 안 보이게 설정 (1) | 2016.08.12 |
JPA Hibernate 사용 중 ORA-00001: 무결성 제약 조건( ORA-00001 에러 (0) | 2016.06.07 |
Spring에서 기본적인 component-scan 설정 (0) | 2016.05.23 |
Spring에서 Pageable, Valid 설정 유의 설정 (0) | 2016.05.23 |
QueryDSL (0) | 2016.05.17 |
Hibernate Dialect (ORA-00933 Pagable error) (0) | 2016.05.17 |
JPA, Hibernate 속성 정리 (0) | 2016.02.29 |
SpringBoot에서 H2 DB 관리자 UI 접속하기 (0) | 2015.09.22 |