Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- LIST
- pandas
- 프로그래머스
- OpenCV
- mysql
- SSH
- C++
- label
- YOLO
- Visual Studio
- Selenium
- Python
- Linux
- JSON
- windows forms
- paramiko
- pip
- C#
- Docker
- 기타 연주
- C
- Numpy
- VS Code
- error
- pytorch
- 오류
- ubuntu
- 핑거스타일
- 컨테이너
- 채보
Archives
- Today
- Total
기계는 거짓말하지 않는다
JPA 데이터베이스 초기화 전략 본문
application.properties 외부 설정 파일의 spring.jpa.hibernate.ddl-auto 속성을 지정하여 DB 초기화 설정을 할 수 있다.
모드 | DB 구조 변경 여부 | 설명 |
create | O | 시작 시에 스키마를 모두 삭제하고 다시 생성 |
create-drop | O | SessionFactory가 닫힐 때, 스키마 삭제 |
update | O | 존재하지 않는 경우 스키마를 생성하거나 업데이트 함. Entity와 비교하여 컬럼 추가, 삭제 하며 기존 스키마를 삭제 하지 않는다. |
validate | X | SessionFactory 시작 시 Entity와 비교하여 스키마가 다르다면 예외가 발생한다. |
none | X | 비활성화 |
'Web > Spring Boot' 카테고리의 다른 글
Spring Boot Server-Sent Events(SSE) 실시간 이벤트 (0) | 2023.10.29 |
---|---|
jsch 오류 com.jcraft.jsch.JSchException: Algorithm negotiation fail (0) | 2023.10.20 |
Ajax 데이터 Controller 전달 (0) | 2020.12.03 |
Controller Get, Post 오류 (0) | 2020.12.02 |
Schema-validation Exception (0) | 2020.12.02 |
Comments