Skip to content

Commit

Permalink
fix: repository에서 조회 안되는 error
Browse files Browse the repository at this point in the history
jpa 테이블명 오류
  • Loading branch information
inpink committed Sep 30, 2024
1 parent 8cb9b87 commit bb0e875
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ spring:

jpa:
hibernate:
ddl-auto: update #update:프로젝트 재시작할떄마다 DB 초기화(create)되는것이 아닌 업데이트(코드의 변경사항를 DB에 업데이트) => validate(현재 코드가 DB 스키마와 일치하는지 검증해서 일치하면 시작)
naming:
implicit-strategy: org.hibernate.boot.model.naming.ImplicitNamingStrategyLegacyJpaImpl
physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
ddl-auto: validate #update:프로젝트 재시작할떄마다 DB 초기화(create)되는것이 아닌 업데이트(코드의 변경사항를 DB에 업데이트) => validate(현재 코드가 DB 스키마와 일치하는지 검증해서 일치하면 시작)

properties:
hibernate:
Expand Down

0 comments on commit bb0e875

Please sign in to comment.