From 86c6299f4e93898b93033ad7c4ed6fae75153142 Mon Sep 17 00:00:00 2001 From: KarmaPol Date: Sat, 27 Apr 2024 21:37:22 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20health-check=20=EA=B6=8C=ED=95=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/mm/coresecurity/config/WebSecurityConfig.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/core-security/src/main/java/com/mm/coresecurity/config/WebSecurityConfig.java b/core/core-security/src/main/java/com/mm/coresecurity/config/WebSecurityConfig.java index 8088f84..47bf3b1 100644 --- a/core/core-security/src/main/java/com/mm/coresecurity/config/WebSecurityConfig.java +++ b/core/core-security/src/main/java/com/mm/coresecurity/config/WebSecurityConfig.java @@ -100,6 +100,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti private RequestMatcher[] permitAllRequests() { List requestMatchers = List.of( + antMatcher("/health-check"), antMatcher("/swagger-ui/**"), antMatcher("/swagger-ui"), antMatcher("/swagger-ui.html"),