SpringSecurity 捕获自定义JWT过滤器抛出的异常

自定义过滤器如下:

java 复制代码
/**
 * jwt过滤器,验证令牌是否合法
 *
 * @author 朱铭健
 */
@Slf4j
public class JwtAuthenticationFilter extends OncePerRequestFilter {
    @Override
    protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException {
    	//换成你自己的获取Token方式
        String token = "";
        if (StringUtil.isNotNullOrEmpty(token)) {
            try {
         		//TODO 这里写校验逻辑和抛出异常
            } catch (JWTException e) {
                //这里的JwtAuthException是一个自定义的AuthenticationException
                throw new JwtAuthException(e.getMessage());
            } catch (Exception e) {
                log.error("JWT认证异常 - {}:", token, e);
                //这里的JwtAuthException是一个自定义的AuthenticationException
                throw new JwtAuthException("JWT认证异常");
            }
        }
        filterChain.doFilter(request, response);
    }
}

定义一个 AuthenticationEntryPoint

java 复制代码
/**
 * @author 朱铭健
 */
@Slf4j
@Component
public class AuthenticationExceptionHandler implements AuthenticationEntryPoint{
    @Override
    public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException) throws IOException {
    	//使用response处理你的异常,包括响应json,跳转页面等
    }
}

配置 Configurer,关键是要将过滤器置于ExceptionTranslationFilter之后,异常处理是由ExceptionTranslationFilter实现的

java 复制代码
public class JwtAuthenticationConfigurer extends AbstractHttpConfigurer<JwtAuthenticationConfigurer, HttpSecurity> {

    @Override
    public void configure(HttpSecurity builder) {
        JwtAuthenticationFilter filter = new JwtAuthenticationFilter();
        // 务必注意这里与配置类中声明的先后顺序
        builder.addFilterAfter(filter, ExceptionTranslationFilter.class);
    }
}
java 复制代码
    public SecurityFilterChain adminFilterChain(HttpSecurity http) throws Exception {
        //Jwt相关配置
        http.with(new JwtAuthenticationConfigurer(), Customizer.withDefaults());
        return http.build();
    }
相关推荐
这人很懒没留下什么几秒前
SpringBoot2.7.4整合MongoDb
数据库·spring boot·mongodb
e***9857几秒前
springboot接入deepseek深度求索 java
java·spring boot·后端
8***84823 分钟前
SQL 实战—递归 SQL:层级结构查询与处理树形数据
java·数据库·sql
小马爱打代码3 分钟前
k8s:SpringBoot应用容器化
spring boot·容器·kubernetes
小股虫7 分钟前
代码优化与设计模式 — 实战精要
java·设计模式·重构
倚肆7 分钟前
MyBatis XML 配置详解
xml·java·mybatis
f***24117 分钟前
SpringBoot中整合ONLYOFFICE在线编辑
java·spring boot·后端
j***121510 分钟前
Java进阶(ElasticSearch的安装与使用)
java·elasticsearch·jenkins
l***217811 分钟前
Spring Boot整合WebSocket
spring boot·后端·websocket
kesifan12 分钟前
JAVA异常处理的基本概念
java·开发语言