一、springboot2.0+访问静态资源总是被拦截,而且项目本身并没有自定义拦截器 springboot1.0访问项目静态资源时,可以默认取static目录下边寻找静态资源,但是升级到springboot2.0后,已经无法利用这种方式正常访问到静态资源了。 解决方式一: 在application.properties中添加路径及静态资源配置,但这种方法亲测不行,还是贴上配置...
1.x和2.x的静态资源访问区别 1.x的resources/static目录下的静态资源可以直接访问,并且访问路径上不用带static,当有配置自定义HandlerInterceptor拦截器时,请求静态资源路径不会被拦截。 2.x的如果自定义HandlerInterceptor拦截器时访问静态资源就会被同步拦截,这样为了实现session过期而跳转登录页面功能就会受影响. 项目的...
addInterceptor.excludePathPatterns("/static/**");//排除静态资源addInterceptor.excludePathPatterns("/view/login"); addInterceptor.excludePathPatterns("/login/check");// 拦截配置addInterceptor.addPathPatterns("/**"); }@OverridepublicvoidaddResourceHandlers(ResourceHandlerRegistry registry){ registry.addReso...