From f2fbff2130f76b5f50282434cdd4ee90af775a18 Mon Sep 17 00:00:00 2001 From: HYOJIN Date: Wed, 8 Apr 2026 08:41:16 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20actuator=20=EA=B2=BD=EB=A1=9C=20?= =?UTF-8?q?=EB=A1=9C=EA=B7=B8=ED=95=84=ED=84=B0=20context-path=20=EB=8C=80?= =?UTF-8?q?=EC=9D=91=20(#6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- .../java/com/snp/batch/api/logging/ApiAccessLoggingFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/snp/batch/api/logging/ApiAccessLoggingFilter.java b/src/main/java/com/snp/batch/api/logging/ApiAccessLoggingFilter.java index 2322337..d47f40a 100644 --- a/src/main/java/com/snp/batch/api/logging/ApiAccessLoggingFilter.java +++ b/src/main/java/com/snp/batch/api/logging/ApiAccessLoggingFilter.java @@ -58,7 +58,7 @@ public class ApiAccessLoggingFilter extends OncePerRequestFilter { } private boolean shouldSkip(String uri) { - return uri.startsWith("/actuator") + return uri.contains("/actuator") || uri.startsWith("/css") || uri.startsWith("/js") || uri.startsWith("/images") -- 2.45.2 From 1745e87c49c300a2138288bf425103fe0a6ad19d Mon Sep 17 00:00:00 2001 From: HYOJIN Date: Wed, 8 Apr 2026 08:41:36 +0900 Subject: [PATCH 2/2] =?UTF-8?q?docs:=20=EB=A6=B4=EB=A6=AC=EC=A6=88=20?= =?UTF-8?q?=EB=85=B8=ED=8A=B8=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/RELEASE-NOTES.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/RELEASE-NOTES.md b/docs/RELEASE-NOTES.md index 11fae53..78f7f32 100644 --- a/docs/RELEASE-NOTES.md +++ b/docs/RELEASE-NOTES.md @@ -4,6 +4,9 @@ ## [Unreleased] +### 수정 +- actuator 경로 로그필터가 context-path 환경에서 동작하지 않는 버그 수정 (#6) + ## [2026-04-07] ### 수정 -- 2.45.2