File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed
backend/src/main/resources Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 4444
4545 steps :
4646 - uses : actions/checkout@v4
47-
4847 - name : Set up JDK 21
4948 uses : actions/setup-java@v4
5049 with :
Original file line number Diff line number Diff line change 11spring :
2+ autoconfigure :
3+ exclude :
24 datasource :
35 url : ${PROD_DATASOURCE_URL}
46 driver-class-name : ${PROD_DATASOURCE_DRIVER}
Original file line number Diff line number Diff line change 11spring :
2+ autoconfigure :
3+ exclude :
4+ - org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration
5+ - org.springframework.boot.autoconfigure.session.SessionAutoConfiguration
26 config :
37 import : optional:file:.env[.properties]
48 application :
812 output :
913 ansi :
1014 enabled : always
11-
1215 jpa :
1316 show-sql : true
1417 hibernate :
@@ -59,6 +62,17 @@ logging:
5962 org.springframework : INFO
6063 org.hibernate : INFO
6164 com.ai.lawyer : DEBUG
65+ management :
66+ endpoints :
67+ web :
68+ base-path : /actuator # 기본값이지만 명시
69+ exposure :
70+ include : health,info # 필요시 metrics 등 추가
71+ endpoint :
72+ health :
73+ probes :
74+ enabled : true # /actuator/health/{liveness,readiness} 활성화
75+ show-details : never # 프로브 용도면 never 권장(민감정보 차단)
6276custom :
6377 jwt :
6478 secretKey : ${CUSTOM_JWT_SECRET_KEY}
You can’t perform that action at this time.
0 commit comments