谷粒商城cors跨域访问问题处理

按教程getway配置了cors 过滤器,还是报跨域访问错误,百度查 ‘getway 配置CorsWebFilter 未生效’ ,发现需要修改一处地方,

corsConfiguration.addAllowedOrigin("*");
改成 corsConfiguration.addAllowedOriginPattern("*");

代码如下

public class GulimallCorsConfiguration {
    @Bean // 添加过滤器
    public CorsWebFilter corsWebFilter(){
        // 基于url跨域,选择reactive包下的
        UrlBasedCorsConfigurationSource source=new UrlBasedCorsConfigurationSource();
        // 跨域配置信息
        CorsConfiguration corsConfiguration = new CorsConfiguration();
        // 允许跨域的头
        corsConfiguration.addAllowedHeader("*");
        // 允许跨域的请求方式
        corsConfiguration.addAllowedMethod("*");
        // 允许跨域的请求来源
//        corsConfiguration.addAllowedOrigin("*");
        corsConfiguration.addAllowedOriginPattern("*");//注释上面一行,添加这个配置
        // 是否允许携带cookie跨域
        corsConfiguration.setAllowCredentials(true);


        // 任意url都要进行跨域配置
        source.registerCorsConfiguration("/**",corsConfiguration);
        return new CorsWebFilter(source);
    }

}
 

你可能感兴趣的:(java,跨域访问,renrenfast,谷粒商城)