프로젝트에서 JPA를 사용할 때 application.yml파일에 이에 대한 설정을 해줄 수 있다
spring:
jpa:
hibernate:
ddl-auto: [옵션]
show-sql: true
properties:
hibernate:
format_sql: true
❗ddl-auto
- create: 서버 시작 후에 기존테이블 삭제하고 다시 생성
- create-drop: 서버 시작 후에 테이블을 생성하고 서버 종료 시 테이블 삭제
- update: 변경 부분만 추가
- validate: 엔티티와 테이블이 정상 매핑되었는지만 확인
- none: 사용하지 않음
728x90
반응형
'🔻Back-End > Spring' 카테고리의 다른 글
[Spring error] Cannot call sendError() after the response has been committed (0) | 2023.01.07 |
---|---|
[Spring] MySQL, MariaDB, H2 DB 연결하는 application.yml 설정 (0) | 2023.01.07 |
[Spring] 인텔리제이에서 Spring 프로젝트 빌드하기 (0) | 2022.12.24 |
[Spring error] Column '' cannot be null (0) | 2022.12.22 |
[Spring error] @Value Cannot find method 'value' (0) | 2022.12.09 |