Posts by Abmael • 1 point
2 posts
-
0
votes1
answer37
viewsA: When adding Authentication Filter in Spring security, it is not possible to access the H2-console
Solved. In the Jwtauthorizationfilter class within the doFilterInternal method, I placed the call from the chain.doFilter(request, Response) method; inside the wrong if. @Override protected void…
-
-1
votes1
answer37
viewsQ: When adding Authentication Filter in Spring security, it is not possible to access the H2-console
Hello, I created my spring security configuration class, but when adding the authorization filter my access to H2-console was lost: @Configuration @EnableWebSecurity…