SpringCloud 跨域访问cors

Posted 朱思年

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringCloud 跨域访问cors相关的知识,希望对你有一定的参考价值。

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
import org.springframework.web.filter.CorsFilter;

@Configuration
public class CorsConfiguraction {
    /**
     * 配置跨域请求
     * @return
     */
    @Bean
    public CorsFilter corsFilter() {
    //初始化cors配置对象
        CorsConfiguration corsConfiguraction = new CorsConfiguration();
    //允许跨域的域名
        corsConfiguraction.addAllowedOrigin("http://xxx.xxx.com");
    //允许cookie
        corsConfiguraction.setAllowCredentials(true);
    //可跨域的请求方式 如get put,post....
        corsConfiguraction.addAllowedMethod("*");
    //允许携带任何头信息
        corsConfiguraction.addAllowedHeader("*");
    //初始化cors配置源对象
        UrlBasedCorsConfigurationSource urlBasedCorsConfigurationSource = new UrlBasedCorsConfigurationSource();
        urlBasedCorsConfigurationSource.registerCorsConfiguration("/**", corsConfiguraction);
        return new CorsFilter(urlBasedCorsConfigurationSource);
    }

}

 

以上是关于SpringCloud 跨域访问cors的主要内容,如果未能解决你的问题,请参考以下文章

System.Web.Http.Cors配置跨域访问的两种方式

asp.net core 系列之允许跨域访问2之测试跨域(Enable Cross-Origin Requests:CORS)

Web CORS 跨域方式使用方式

跨域CORS

SpringCloud Gateway跨域配置

基于CORS的GeoServer跨域访问策略