首先先声明一下我的Spring Cloud Gateway版本,因为不同的版本特性会有一些差异。
方式1:在application.yml配置文件中添加以下代码内容
spring:
cloud:
gateway:
# CORS跨域处理
globalcors:
cors-configurations:
# 允许跨域的路径(备注:/**表示所有路径)
'[/**]':
# 允许哪些请求源跨域(备注:allowCredentials为true时,allowedOrigins不能设置为“*”,会报错)
allowedOriginPatterns:
- "*"
# allowedOrigins: "*"
# 是否携带cookie跨域
allowCredentials: true
# 允许哪种请求头跨域
allowedHeaders: "*"
# 允许哪种方法类型跨域(备注:这里我设置了GET、POST、PUT、DELETE、OPTIONS)
allowedMethods:
- GET
- POST
- PUT
- DELETE
- OPTIONS
方式2、创建XXXCorsConfiguration(XXX你需要定义成自己项目相关的名称)
package com.xxx.gateway.config;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.reactive.CorsWebFilter;
import org.springframework.web.cors.reactive.UrlBasedCorsConfigurationSource;
import java.util.ArrayList;
import java.util.List;
/**
* 个人博客网CORS跨域请求配置
* @author 匿名用户
* @email 匿名用户@126.com
* @date 2021/8/6 23:38
*/
@Slf4j
@Configuration
public class XXXCorsConfiguration {
@Bean
public CorsWebFilter corsWebFilter(){
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
CorsConfiguration corsConfiguration = new CorsConfiguration();
// 允许哪些请求源跨域
// corsConfiguration.addAllowedOrigin("*");
List<String> allowedOriginPatterns = new ArrayList<>();
allowedOriginPatterns.add("*");
corsConfiguration.setAllowedOriginPatterns(allowedOriginPatterns);
// 允许哪种请求头跨域
corsConfiguration.addAllowedHeader("*");
// 允许哪种方法类型跨域 get post delete put,*代表允许所有
corsConfiguration.addAllowedMethod("*");
// 是否携带cookie跨域
corsConfiguration.setAllowCredentials(true);
// 允许跨域的路径
source.registerCorsConfiguration("/**", corsConfiguration);
return new CorsWebFilter(source);
}
}
这两种方式随便一个都能完美解决跨域问题,不过生产环境参数设置上还是要谨慎一些。记录贴以防自己以后在耽误时间。不做任何回复