From 829d073c12b2c4ecea3b852be4327e82a8eab8f3 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Tue, 14 Jul 2026 04:35:45 +0000 Subject: [PATCH] =?UTF-8?q?=EC=8A=A4=ED=94=84=EB=A7=81=20=EC=A0=84?= =?UTF-8?q?=ED=99=98=20=EA=B3=84=ED=9A=8D=20=EC=88=98=EB=A6=BD=20(iss-cb35?= =?UTF-8?q?afc33813)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/application.yml | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 spring-runtime/spring-runtime-starter/src/main/resources/application.yml diff --git a/spring-runtime/spring-runtime-starter/src/main/resources/application.yml b/spring-runtime/spring-runtime-starter/src/main/resources/application.yml new file mode 100644 index 0000000..f4427f3 --- /dev/null +++ b/spring-runtime/spring-runtime-starter/src/main/resources/application.yml @@ -0,0 +1,41 @@ +# 스프링 런타임 애플리케이션 설정 +spring: + application: + name: spring-runtime + datasource: + url: jdbc:h2:mem:springruntime;DB_CLOSE_DELAY=-1 + driver-class-name: org.h2.Driver + username: sa + password: + 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: 8080 + servlet: + context-path: /api + +management: + endpoints: + web: + exposure: + include: health,info,metrics + endpoint: + health: + show-details: always + +logging: + level: + com.runtime: DEBUG + org.springframework.web: INFO + org.hibernate.SQL: DEBUG