This commit is contained in:
jinho jeong
2022-04-20 15:21:10 +09:00
parent dcdf19ba91
commit 390fdba0cd
3 changed files with 19 additions and 1 deletions

View File

@@ -23,6 +23,8 @@ repositories {
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'com.h2database:h2'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'

View File

@@ -1 +0,0 @@

View File

@@ -0,0 +1,17 @@
spring:
jpa:
database: "h2"
properties:
hibernate:
show-sql: true
ddl-auto: update
hbm2ddl:
auto: update
format_sql: true
logging:
level:
web: DEBUG
org:
hibernate:
SQL: DEBUG