diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index bf7a09999..4bc0451c5 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -15,6 +15,11 @@ spring.messages.basename=messages/messages # Actuator management.endpoints.web.exposure.include=* + +# liveness: 앱 프로세스 살아있는지(가벼운 체크) +management.endpoint.health.group.liveness.include=ping +# readiness: "서비스 가능한가" (DB 포함) +management.endpoint.health.group.readiness.include=db # Actuator health details (주의: 외부노출은 위험할 수 있음) management.endpoint.health.show-details=always management.endpoint.health.show-components=always