We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
CustomSecurityLogger
SecurityConfig.java
1 parent 1fdd18c commit f2ab829Copy full SHA for f2ab829
1 file changed
src/main/java/boombimapi/global/config/SecurityConfig.java
@@ -83,7 +83,6 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
83
response.sendError(HttpServletResponse.SC_UNAUTHORIZED, "Unauthorized")
84
))
85
86
- .addFilterBefore(new CustomSecurityLogger(), UsernamePasswordAuthenticationFilter.class)
87
.addFilterAfter(new BoombimAuthExceptionFilter(objectMapper), CorsFilter.class)
88
.addFilterAfter(new BoombimJWTFilter(jwtUtil, excludedUrls), UsernamePasswordAuthenticationFilter.class);
89
0 commit comments