CorsFilter解决Spring Cloud多服务之间的跨域问题

其主要解决跨域请求问题,至于其中原理目前还在学习当中,起码要先知道如何使用!
CORS Filter官网:http://software.dzhuvinov.com/cors-filter.html

First Step♥

import com.didispace.swagger.butler.EnableSwaggerButler;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.security.oauth2.client.EnableOAuth2Sso;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.hystrix.EnableHystrix;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
import org.springframework.context.annotation.Bean;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
import org.springframework.web.filter.CorsFilter;

/**
 * The class Paas cloud gateway application.
 */
@SpringBootApplication
public class Application {

   public static void main(String[] args) {
      SpringApplication.run(Application.class, args);
   }

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

这个办法只是简单的介绍一下,如果微服务太多,最好还是在zuul的网关层解决跨域问题!

好啦,今天的分享就到此为止了,如若哪里做的不对,还望各位大神指点一二……

♥♥♥

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring Cloud Gateway中,可以通过添加GlobalFilter或者WebFilter解决跨域问题。以下是两种方法的示例代码: 1. 添加GlobalFilter ```java @Component public class CorsFilter implements GlobalFilter { @Override public Mono<Void> filter(ServerWebExchange exchange, GatewayFilterChain chain) { ServerHttpRequest request = exchange.getRequest(); ServerHttpResponse response = exchange.getResponse(); HttpHeaders headers = response.getHeaders(); headers.add(HttpHeaders.ACCESS_CONTROL_ALLOW_ORIGIN, "*"); headers.add(HttpHeaders.ACCESS_CONTROL_ALLOW_HEADERS, "*"); headers.add(HttpHeaders.ACCESS_CONTROL_ALLOW_METHODS, "*"); if (request.getMethod() == HttpMethod.OPTIONS) { response.setStatusCode(HttpStatus.OK); return Mono.empty(); } return chain.filter(exchange); } } ``` 2. 添加WebFilter ```java @Configuration public class CorsConfig { @Bean public WebFilter corsFilter() { return (ServerWebExchange exchange, WebFilterChain chain) -> { ServerHttpRequest request = exchange.getRequest(); ServerHttpResponse response = exchange.getResponse(); HttpHeaders headers = response.getHeaders(); headers.add(HttpHeaders.ACCESS_CONTROL_ALLOW_ORIGIN, "*"); headers.add(HttpHeaders.ACCESS_CONTROL_ALLOW_HEADERS, "*"); headers.add(HttpHeaders.ACCESS_CONTROL_ALLOW_METHODS, "*"); if (request.getMethod() == HttpMethod.OPTIONS) { response.setStatusCode(HttpStatus.OK); return Mono.empty(); } return chain.filter(exchange); }; } } ``` 以上两种方法都是在响应的Header中添加Access-Control-Allow-*字段来允许跨域访问。需要注意的是,由于OPTIONS请求不会携带身份验证信息,因此需要在响应中设置HTTP状态码为200,以便浏览器能够正确地处理跨域请求。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值