We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ddl-auto 옵션
ddl-auto
create
update
validate
none
개발 단계에서는 update를, 운영 환경에서는 validate나 none을 사용하는 것이 좋다.
dialect 옵션 hibernate가 사용하는 SQL 방언을 지정
dialect
The text was updated successfully, but these errors were encountered:
Add #1 Jpa project
6fd7aaf
suna-ji
No branches or pull requests
JPA 관련 설정
ddl-auto
옵션create
: 애플리케이션 시작 시 스키마를 새로 생성 (기존 데이터 삭제)update
: 엔티티 변경 시 기존 스키마를 업데이트validate
: 스키마를 확인하지만 변경하지 않음none
: hibernate가 스키마에 관여하지 않음 (권장)dialect
옵션hibernate가 사용하는 SQL 방언을 지정
The text was updated successfully, but these errors were encountered: