Compare commits
No commits in common. "2c975bb8d448d1ca8456199fc7f15659465ea5da" and "c8722cd4f2dd87503e9a2638663b142fafacadb5" have entirely different histories.
2c975bb8d4
...
c8722cd4f2
@ -4,9 +4,6 @@
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
### 수정
|
||||
- actuator 경로 로그필터가 context-path 환경에서 동작하지 않는 버그 수정 (#6)
|
||||
|
||||
## [2026-04-07]
|
||||
|
||||
### 수정
|
||||
|
||||
@ -58,7 +58,7 @@ public class ApiAccessLoggingFilter extends OncePerRequestFilter {
|
||||
}
|
||||
|
||||
private boolean shouldSkip(String uri) {
|
||||
return uri.contains("/actuator")
|
||||
return uri.startsWith("/actuator")
|
||||
|| uri.startsWith("/css")
|
||||
|| uri.startsWith("/js")
|
||||
|| uri.startsWith("/images")
|
||||
|
||||
불러오는 중...
Reference in New Issue
Block a user