답변 1
0
안녕하세요. 최웅석님
application.yml을 한번 확인해보시겠어요?
ddl-auto: create로 되어 있어야 합니다.
참고로 application.yml 파일은 띄어쓰기 2칸 단위로 맞추어져 있는데, 이 부분을 잘 확인해주세요.
spring:
datasource:
url: jdbc:h2:tcp://localhost/~/jpashop
username: sa
password:
driver-class-name: org.h2.Driver
jpa:
hibernate:
ddl-auto: create
properties:
hibernate:
show_sql: true
format_sql: true
logging:
level:
org.hibernate.SQL: debug
감사합니다.