美文网首页
Web请求拦截器

Web请求拦截器

作者: Alen_ab56 | 来源:发表于2022-11-02 10:09 被阅读0次

1. 实现HandlerInterceptor;

@Component

public class HttpInterceptor implements HandlerInterceptor {}

2. 添加到拦截器链中;

@Component

public class WebMvcConfig implements WebMvcConfigurer {

@Autowired

    private HttpInterceptor httpInterceptor;

@Override

    public void addInterceptors(InterceptorRegistry registry) {

registry.addInterceptor(httpInterceptor);

}

相关文章

网友评论

      本文标题:Web请求拦截器

      本文链接:https://www.haomeiwen.com/subject/dgzjtdtx.html