Spring Boot Security - attemptAuthentication

0

Witam, mam taki problem, już trochę szukałem i niestety nie mogę znaleźć rozwiązania.

@Override
    protected void configure(HttpSecurity http) throws Exception {
        http.cors().and().authorizeRequests()
                .antMatchers(HttpMethod.POST, "/login").permitAll()
                .anyRequest().authenticated()
                .and()
                // Filter for the api/login requests
                .addFilterAfter(new LoginFilter("/login",
                                authenticationManager()),
                        UsernamePasswordAuthenticationFilter.class)
                // Filter for other requests to check JWT in header
                .addFilterBefore(new AuthenticationFilter(),
                        UsernamePasswordAuthenticationFilter.class);
    }
public class LoginFilter extends
        AbstractAuthenticationProcessingFilter {
    public LoginFilter(String url, AuthenticationManager authManager)
    {
        super(new AntPathRequestMatcher(url));
        setAuthenticationManager(authManager);
    }
    @Override
    public Authentication attemptAuthentication(
            HttpServletRequest req, HttpServletResponse res)
            throws AuthenticationException, IOException, ServletException
    {
        AccountCredentials creds = new ObjectMapper()
                .readValue(req.getInputStream(), AccountCredentials.class);
        return getAuthenticationManager().authenticate(
                new UsernamePasswordAuthenticationToken(
                        creds.getUsername(),
                        creds.getPassword(),
                        Collections.emptyList()
                )
        );
    }
    @Override
    protected void successfulAuthentication(
            HttpServletRequest req,
            HttpServletResponse res, FilterChain chain,
            Authentication auth) throws IOException, ServletException {
        AuthenticationService.addToken(res, auth.getName());
    }
}

Gdy wyślę żądanie POST na /login, z tego co mi wiadomo powinna wywował się metoda attemptAuthentication, jednak nic takiego się nie dzieje.

0

.addFilterAfter(new LoginFilter("/login",
authenticationManager()),
UsernamePasswordAuthenticationFilter.class)

Mam tutaj Before.

1 użytkowników online, w tym zalogowanych: 0, gości: 1