From 37e2f81ff93f25227a2e9d97480d8fdfc0daa8d8 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Thu, 30 Jul 2026 13:00:28 +0000 Subject: [PATCH] =?UTF-8?q?=EC=B9=B4=EB=93=9C=20=EB=A7=A4=EC=9E=85=20?= =?UTF-8?q?=EC=8A=B9=EC=9D=B8=20=EA=B2=BD=EB=A1=9C=20Spring=20Boot=203=20?= =?UTF-8?q?=EC=A0=84=ED=99=98=20(ACX-E2E-1785394564819)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/application.properties | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 proj-acquirex/src/main/resources/application.properties diff --git a/proj-acquirex/src/main/resources/application.properties b/proj-acquirex/src/main/resources/application.properties new file mode 100644 index 0000000..7b29f77 --- /dev/null +++ b/proj-acquirex/src/main/resources/application.properties @@ -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 \ No newline at end of file