【问题标题】:Spring Security with JWT: JWT filter which validates the token is not invokedSpring Security with JWT:不调用验证令牌的 JWT 过滤器
【发布时间】:2020-01-04 01:59:01
【问题描述】:

我正在使用带有 JWT 的 Spring Security 来验证 rest api。登录时,会生成 JWT 令牌并将其共享给移动客户端。但是,后续请求中的令牌未经过验证。安全配置有什么问题吗?

Spring 安全版本 - 5.1.6.RELEASE

// 安全配置

@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {

    @Autowired
    private JwtAuthenticationEntryPoint jwtAuthenticationEntryPoint;

    @Autowired
    private JwtTokenAuthenticationFilter jwtTokenAuthenticationFilter;

    @Autowired
    private CustomUserDetailsService customUserDetailsService;

    @Bean
    @Override
    public AuthenticationManager authenticationManagerBean() throws Exception {
        return super.authenticationManagerBean();
    }

    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.userDetailsService(customUserDetailsService).passwordEncoder(passwordEncoder());
    }

    @Bean
    public PasswordEncoder passwordEncoder() {
        return new BCryptPasswordEncoder();
    }

    @Override
    protected void configure(HttpSecurity httpSecurity) throws Exception {
        httpSecurity.
            httpBasic().disable().
            csrf().disable().
            exceptionHandling().authenticationEntryPoint(jwtAuthenticationEntryPoint).
            and().
                addFilterBefore(jwtTokenAuthenticationFilter, UsernamePasswordAuthenticationFilter.class).
                sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).
            and().
                authorizeRequests().antMatchers("/user/login").permitAll().
                antMatchers("/user/test").authenticated().
                anyRequest().authenticated();
    }

}

// JWT Token Auth Filter - 永远不会被调用

@Component
public class JwtTokenAuthenticationFilter extends GenericFilterBean {

    @Autowired
    private JwtTokenProvider jwtTokenProvider;

    @Override
    public void doFilter(ServletRequest req, ServletResponse res, FilterChain filterChain) throws IOException, ServletException {
        String token = jwtTokenProvider.resolveToken((HttpServletRequest) req);
        if (null != token && jwtTokenProvider.validateToken(token)) {
            Authentication auth = jwtTokenProvider.getAuthentication(token);
            if (null != auth) {
                SecurityContextHolder.getContext().setAuthentication(auth);
            }
        }
        filterChain.doFilter(req, res);
    }
}

我期待登录后的所有请求都将根据 JWT 令牌进行身份验证。 我尝试将要验证的服务名称如下:

antMatchers("/user/test").authenticated().

此外,还添加了任何经过身份验证的请求,但它们都不起作用。

anyRequest().authenticated();

【问题讨论】:

    标签: spring-mvc spring-security jwt-auth


    【解决方案1】:

    尝试替换

    addFilterBefore(jwtTokenAuthenticationFilter, UsernamePasswordAuthenticationFilter.class).
    

    addFilterBefore(jwtTokenAuthenticationFilter), BasicAuthenticationFilter.class);
    

    如果没有运行,更改 jwtTokenAuthenticationFilter 类以避免成为 Spring bean 并像这样使用:

    addFilterBefore(new JwtTokenAuthenticationFilter(jwtTokenProvider)), BasicAuthenticationFilter.class);
    

    并在安全类上添加以下代码:

    @Autowired
    private JwtTokenProvider jwtTokenProvider;
    

    【讨论】:

    • 已经尝试过这些选项,但没有运气。然后,我将问题放在堆栈上。你认为还有什么可以解决这个问题的吗?
    猜你喜欢
    • 2016-03-22
    • 2021-01-20
    • 2023-02-25
    • 2018-08-05
    • 2019-06-23
    • 2020-10-02
    • 2017-01-02
    • 2017-08-18
    • 1970-01-01
    相关资源
    最近更新 更多