前言:
目前看官们对“spring跨域配置不生效”可能比较注重,小伙伴们都想要分析一些“spring跨域配置不生效”的相关知识。那么小编也在网络上搜集了一些关于“spring跨域配置不生效””的相关文章,希望你们能喜欢,咱们快快来学习一下吧!在我们使用springboot中,难免遇到前后端分离的场景,因此也带来的问题是跨域请求,虽然springboot在配置跨域请求中非常方便,但是如果投跨域场景和自定义拦截器一起使用的话,那就没那么顺利了。二者功能会有冲突,究其原因是当有请求发送到后端时,先被自定义拦截器拦截,如果拦截器验证没有问题,才会开始执行跨域配置。
解决办法:
让跨域配置在自定义拦截器之前执行,由于 Filter 的执行顺序大于自定义拦截器,因此可以在 Filter 中实现跨域的配置
/** * 配置全局跨域 * SpringBoot自定义拦截器和跨域配置冲突 * 当有请求发送到后台时,先被自定义拦截器拦截,如果拦截器验证没有问题,才会开始执行跨域配置。 * 解决办法: * 让跨域配置在自定义拦截器之前执行,由于 Filter 的执行顺序大于自定义拦截器,因此可以在 Filter 中实现跨域的配置 */@Configurationpublic class GlobalCorsFilter { private CorsConfiguration corsConfig() { CorsConfiguration corsConfiguration = new CorsConfiguration(); corsConfiguration.addAllowedHeader("*"); corsConfiguration.addAllowedMethod("*"); corsConfiguration.addAllowedOrigin("*"); corsConfiguration.setMaxAge(3600L); corsConfiguration.setAllowCredentials(true); return corsConfiguration; } @Bean public CorsFilter corsFilter() { UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); source.registerCorsConfiguration("/**", corsConfig()); return new CorsFilter(source); }}
拦截器配置
@Configurationpublic class WebConfig implements WebMvcConfigurer { @Autowired private JwtInterceptor jwtInterceptor; /** * 添加拦截器 */ @Override public void addInterceptors(InterceptorRegistry registry) { //拦截路径可自行配置多个 可用 ,分隔开 registry.addInterceptor(jwtInterceptor) .addPathPatterns("/**") .excludePathPatterns("/error"); }}
标签: #spring跨域配置不生效