spring-cloud跨域问题

来源:互联网 发布:雅马哈网络经销商查询 编辑:程序博客网 时间:2024/06/07 19:29

我们在采用spring-cloud开发前后端分离项目时,会遇到跨域问题,以下是我个人解决思路,请多多指教

解决思路:1.在zuulfiter中添加跨域需要的response头部   2在api-getway主类中添加以下声明

1.zuul中添加没有成功,尝试出来再添加到该博文。。。






2在api-getWay主类添加

@Beanpublic CorsFilter corsFilter() {   final UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();   final CorsConfiguration config = new CorsConfiguration();   config.setAllowCredentials(true); // 允许cookies跨域   config.addAllowedOrigin("*");// #允许向该服务器提交请求的URI,*表示全部允许,在SpringMVC中,如果设成*,会自动转成当前请求头中的Origin   config.addAllowedHeader("*");// #允许访问的头信息,*表示全部   config.setMaxAge(18000L);// 预检请求的缓存时间(秒),即在这个时间段里,对于相同的跨域请求不会再预检了   config.addAllowedMethod("OPTIONS");// 允许提交请求的方法,*表示全部允许   config.addAllowedMethod("HEAD");   config.addAllowedMethod("GET");// 允许Get的请求方法   config.addAllowedMethod("PUT");   config.addAllowedMethod("POST");   config.addAllowedMethod("DELETE");   config.addAllowedMethod("PATCH");   source.registerCorsConfiguration("/**", config);   return new CorsFilter(source);}

原创粉丝点击