스프링 전환 계획 수립 #2

Open
forge-bot wants to merge 9 commits from forge/iss-cb35afc33813-attempt-2-run-0d580cf424c5 into main
Showing only changes of commit 4f114dd4d3 - Show all commits

View file

@ -0,0 +1,35 @@
spring:
application:
name: spring-transition-application
datasource:
url: ${DB_URL:jdbc:h2:mem:transitiondb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE}
username: ${DB_USERNAME:sa}
password: ${DB_PASSWORD:}
driver-class-name: org.h2.Driver
jpa:
hibernate:
ddl-auto: update
show-sql: true
properties:
hibernate:
format_sql: true
dialect: org.hibernate.dialect.H2Dialect
h2:
console:
enabled: true
path: /h2-console
server:
port: ${SERVER_PORT:8080}
management:
endpoints:
web:
exposure:
include: health,info,metrics
endpoint:
health:
show-details: when_authorized
logging:
level:
com.transition: DEBUG
org.springframework.web: INFO
org.hibernate.SQL: DEBUG