카드 매입 승인 경로 Spring Boot 3 전환 #12

Closed
forge-bot wants to merge 8 commits from forge/ACX-E2E-1785394564819-attempt-13-run-dada4efd8b46 into main
Showing only changes of commit 37e2f81ff9 - Show all commits

View file

@ -0,0 +1,23 @@
# Spring Boot 3.x Configuration
spring.application.name=proj-acquirex
server.port=8080
# H2 Database Configuration
spring.datasource.url=jdbc:h2:mem:acquirex;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=
# JPA/Hibernate Configuration
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
spring.jpa.hibernate.ddl-auto=create-drop
spring.jpa.show-sql=true
spring.jpa.properties.hibernate.format_sql=true
# H2 Console
spring.h2.console.enabled=true
spring.h2.console.path=/h2-console
# Jackson Configuration
spring.jackson.serialization.write-dates-as-timestamps=false
spring.jackson.time-zone=Asia/Seoul