카드 매입 승인 경로 Spring Boot 3 전환 (ACX-E2E-1785394564819)
Some checks failed
Verify / source-contract (push) Has been cancelled
Some checks failed
Verify / source-contract (push) Has been cancelled
This commit is contained in:
parent
05dcb24cb3
commit
91e77cb666
1 changed files with 24 additions and 0 deletions
24
src/main/resources/application.properties
Normal file
24
src/main/resources/application.properties
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
spring.application.name=card-acquisition
|
||||||
|
|
||||||
|
# H2 Database
|
||||||
|
spring.datasource.url=jdbc:h2:mem:cardacquisition;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
|
||||||
|
spring.datasource.driverClassName=org.h2.Driver
|
||||||
|
spring.datasource.username=sa
|
||||||
|
spring.datasource.password=
|
||||||
|
|
||||||
|
# JPA/Hibernate 6 (Spring Boot 3)
|
||||||
|
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
|
||||||
|
|
||||||
|
# Server
|
||||||
|
server.port=8080
|
||||||
|
|
||||||
|
# Jackson
|
||||||
|
spring.jackson.serialization.write-dates-as-timestamps=false
|
||||||
|
spring.jackson.date-format=yyyy-MM-dd'T'HH:mm:ss
|
||||||
Loading…
Add table
Add a link
Reference in a new issue