Python 官方文档:入门教程 => 点击学习
SpringBoot拦截器执行两次 原因是: org.springframework.boot.autoconfigure.WEB.servlet.error.BasicError
原因是:
org.springframework.boot.autoconfigure.WEB.servlet.error.BasicErrorController.error
也是一个controller路径为/error
@Configuration
public class mvcConfig extends WebMvcConfigurationSupport {
//自定义的拦截器
@Bean
public SecurityInterceptor getSecurityInterceptor() {
return new SecurityInterceptor();
}
@Override
public void addInterceptors(InterceptorReGIStry registry) {
//添加拦截器
InterceptorRegistration registration = registry.addInterceptor(getSecurityInterceptor());
//排除的路径
registration.excludePathPatterns("/login");
registration.excludePathPatterns("/loGout");
//将这个controller放行
registration.excludePathPatterns("/error");
//拦截全部
registration.addPathPatterns("/**");
}
}
根据当前请求,找到**HandlerExecutionChain**** 【可以处理请求的handler以及handler的所有 拦截器】
先来顺序执行 所有拦截器的 preHandle方法
如果当前拦截器prehandler返回为true。则执行下一个拦截器的preHandle
如果当前拦截器返回为false。直接 倒序执行所有已经执行了的拦截器的 afterCompletion;
如果任何一个拦截器返回false。直接跳出不执行目标方法
所有拦截器都返回True。执行目标方法
倒序执行所有拦截器的postHandle方法。
前面的步骤有任何异常都会直接倒序触发 afterCompletion
页面成功渲染完成以后,也会倒序触发 afterCompletion
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
--结束END--
本文标题: springboot 拦截器执行两次的解决方案
本文链接: https://lsjlt.com/news/135824.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0