- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章spring cloud gateway跨域全局CORS配置方式由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
在Spring 5 Webflux中,配置CORS,可以通过自定义WebFilter实现:
注:此种写法需真实跨域访问,监控header中才会带相应属性.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
import
org.springframework.http.HttpHeaders;
import
org.springframework.http.HttpStatus;
import
org.springframework.http.server.reactive.ServerHttpRequest;
import
org.springframework.http.server.reactive.ServerHttpResponse;
import
org.springframework.web.cors.reactive.CorsUtils;
import
org.springframework.web.server.ServerWebExchange;
import
org.springframework.web.server.WebFilter;
import
org.springframework.web.server.WebFilterChain;
import
org.springframework.http.HttpMethod;
import
reactor.core.publisher.Mono;
import
static
org.springframework.web.cors.CorsConfiguration.ALL;
public
class
XXXApplication{
public
static
void
main(String[] args) {
SpringApplication.run(XXXApplication.
class
, args);
}
private
static
final
String MAX_AGE =
"18000L"
;
@Bean
public
WebFilter corsFilter() {
return
(ServerWebExchange ctx, WebFilterChain chain) -> {
ServerHttpRequest request = ctx.getRequest();
if
(!CorsUtils.isCorsRequest(request)) {
return
chain.filter(ctx);
}
HttpHeaders requestHeaders = request.getHeaders();
ServerHttpResponse response = ctx.getResponse();
HttpMethod requestMethod = requestHeaders.getAccessControlRequestMethod();
HttpHeaders headers = response.getHeaders();
headers.add(HttpHeaders.ACCESS_CONTROL_ALLOW_ORIGIN, requestHeaders.getOrigin());
headers.addAll(HttpHeaders.ACCESS_CONTROL_ALLOW_HEADERS, requestHeaders.getAccessControlRequestHeaders());
if
(requestMethod !=
null
) {
headers.add(HttpHeaders.ACCESS_CONTROL_ALLOW_METHODS, requestMethod.name());
}
headers.add(HttpHeaders.ACCESS_CONTROL_ALLOW_CREDENTIALS,
"true"
);
headers.add(HttpHeaders.ACCESS_CONTROL_EXPOSE_HEADERS, ALL);
headers.add(HttpHeaders.ACCESS_CONTROL_MAX_AGE, MAX_AGE);
if
(request.getMethod() == HttpMethod.OPTIONS) {
response.setStatusCode(HttpStatus.OK);
return
Mono.empty();
}
return
chain.filter(ctx);
};
}
}
|
网上还提到一种配置写法,实测好用:
1
2
3
4
5
6
7
8
9
|
spring:
cloud:
gateway:
globalcors:
corsConfigurations:
'[/**]'
:
allowedOrigins:
"*"
allowedMethods:
"*"
allowedHeaders:
"*"
|
springcloud gateway提供的自带的跨域过滤器有问题,前端还是会报跨域。zuul不会有这个问题。调试发现主要是游览器发送嗅探请求(OPTIONS)时,没有返回跨域的响应头,从而游览器报跨域问题.
由于springcloud gateway为webflux与zuul不一样,同一个服务,采用spring内置的跨域过滤器,zuul可以通过而gateway报错。具体配置如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
spring:
cloud:
gateway:
globalcors:
cors-configurations:
'[/**]'
:
# 允许携带认证信息
# 允许跨域的源(网站域名/ip),设置*为全部
# 允许跨域请求里的head字段,设置*为全部
# 允许跨域的method, 默认为GET和OPTIONS,设置*为全部
# 跨域允许的有效期
allow-credentials:
true
allowed-origins:
'*'
allowed-headers: Content-Type,Content-Length, Authorization, Accept,X-Requested-With
allowed-methods:
'*'
exposed-headers: Content-Type,Content-Length, Authorization, Accept,X-Requested-With
max-age:
3600
|
此配置无效,前端还是会报跨域问题,主要是前端发送OPTIONS请求时没有返回跨域信息 。
向容器中注入跨域过滤器 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
import
lombok.extern.slf4j.Slf4j;
import
org.springframework.beans.factory.annotation.Autowired;
import
org.springframework.beans.factory.annotation.Qualifier;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
import
org.springframework.boot.web.servlet.FilterRegistrationBean;
import
org.springframework.context.annotation.Bean;
import
org.springframework.core.Ordered;
import
org.springframework.web.cors.CorsConfiguration;
import
org.springframework.web.cors.UrlBasedCorsConfigurationSource;
import
org.springframework.web.filter.CorsFilter;
/**
* @author ZhouChuGang
* @version 1.0
* @project langangkj-commonm
* @date 2020/5/4 12:24
* @Description 跨域过滤器配置
*/
@Slf4j
@configuration
@ConditionalOnMissingBean
(CorsFilter.
class
)
@ConditionalOnWebApplication
(type = ConditionalOnWebApplication.Type.SERVLET)
public
class
CorsFilterConfiguration {
public
CorsFilterConfiguration() {
log.info(
"==========注入跨域过滤器============="
);
}
@Bean
(
"corsFilter"
)
public
CorsFilter corsFilter() {
UrlBasedCorsConfigurationSource source =
new
UrlBasedCorsConfigurationSource();
CorsConfiguration config =
new
CorsConfiguration();
// #允许向该服务器提交请求的URI,*表示全部允许
config.addAllowedOrigin(CorsConfiguration.ALL);
// 允许cookies跨域
config.setAllowCredentials(
true
);
// #允许访问的头信息,*表示全部
config.addAllowedHeader(CorsConfiguration.ALL);
// 允许提交请求的方法,*表示全部允许
config.addAllowedMethod(CorsConfiguration.ALL);
source.registerCorsConfiguration(
"/**"
, config);
return
new
CorsFilter(source);
}
@Autowired
@Qualifier
(
"corsFilter"
)
private
CorsFilter corsFilter;
/**
* 配置跨域过滤器
*/
@Bean
public
FilterRegistrationBean<CorsFilter> corsFilterRegistration() {
FilterRegistrationBean<CorsFilter> registration =
new
FilterRegistrationBean<>();
registration.setFilter(corsFilter);
registration.addUrlPatterns(
"/*"
);
registration.setName(
"corsFilter"
);
registration.setOrder(Ordered.HIGHEST_PRECEDENCE);
return
registration;
}
}
|
此方案可以完美解决跨域问题。但是springcloud gateway 不是servlet 规范.
跨域由网关后面的服务实现.
需要在响应头中加入以下信息 。
1
2
3
4
5
|
# 这个为请求头中的 origin
add_header
'Access-Control-Allow-Origin'
'$http_origin'
;
add_header
'Access-Control-Allow-Credentials'
'true'
;
add_header
'Access-Control-Allow-Methods'
'PUT,POST,GET,DELETE,OPTIONS'
;
add_header
'Access-Control-Allow-Headers'
'Content-Type,Content-Length,Authorization,Accept,X-Requested-With'
;
|
请求先到nginx,nginx再去请求gateway, 由nginx添加跨域响应头 。
1
2
3
4
|
add_header
'Access-Control-Allow-Origin'
'$http_origin'
;
add_header
'Access-Control-Allow-Credentials'
'true'
;
add_header
'Access-Control-Allow-Methods'
'PUT,POST,GET,DELETE,OPTIONS'
;
add_header
'Access-Control-Allow-Headers'
'Content-Type,Content-Length,Authorization,Accept,X-Requested-With'
;
|
这里本人为了方便,采用第3中方案,测试完美解决! 。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持我.
原文链接:https://wanghq.blog.csdn.net/article/details/88179626 。
最后此篇关于spring cloud gateway跨域全局CORS配置方式的文章就讲到这里了,如果你想了解更多关于spring cloud gateway跨域全局CORS配置方式的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
Spring Cloud Greenwich puts spring-cloud-netflix-zuul处于维护模式,所以我正在尝试从 Zuul 迁移到 Spring Cloud Gateway。
有没有办法对 AWS API Gateway 服务使用基本身份验证而不是 AWS4-HMAC-SHA256 身份验证?我需要支持仅支持使用基本身份验证的 webhook 调用的系统。 最佳答案 您只需
Rails API 通常喜欢这样的数组查询参数: example.com?colors[]=cyan&colors[]=magenta&colors[]=yellow&colors[]=black 我
Here蓝图中说,API 网关将响应 401: Unauthorized。 我写了同样的raise Exception('Unauthorized')在我的 lambda 中,并且能够从 Lambda
在 documentation我确实看到了如何使用 Hystrix 实现超时,但我只想确保没有实现默认超时。 最佳答案 现在还有一个 chapter关于文档中的一般超时。可以设置全局超时和每条路由超时
我的资源/api 有一个方法 POST,它将主体代理到 Kinesis Firehose(然后代理到 ES)。同时我希望它触发一个 Lambda 函数。 我尝试添加一个额外的方法 ANY 来触发 La
Spring Cloud Gateway 真的很新 - 但它“似乎”很容易。我真的很苦恼的一个问题。我的要求是为路径添加前缀,检查头变量,根据该变量查找 URI,然后继续前进。 问题是 uri 总是下
我已经使用 Websocket 协议(protocol)创建了一个 API 网关。部署 API 后,我得到一个 WebSocket URL 和一个连接 URL。 例如 WebSocket URL:ws
我正在使用 AWS API Gateway 和 AWS Lambda 创建一个无服务器的 REST API。虽然已创建端点并与相应的 Lambda 函数链接,但下一步是添加身份验证层以通过电子邮件和密
我们开发了一个应用程序,它提供多种休息服务,并支持 Accept-Encoding header ,以通过 Content-Encoding:gzip header 值返回压缩内容。 此应用程序部署在
我正在开发 CloudFormation 模板来部署 API Gateway 资源,但在部署 (AWS::ApiGateway::Deployment) 和UsagePlan 资源方面遇到问题。这有点
我目前正在使用 AWS API Gateway 开发 API。我正在向我的客户发布一个 JSON Web token (JWT)。该 JWT 使用 secret 进行签名。我目前将 secret 存储
我下载了 .NET SDK对于 Payflow Gateway 并遵循 these instructions关于设置我的 Payflow Gateway 测试帐户,然后修改两行 DOSecureTok
我目前正在将 Amazon CloudSearch 与前端应用程序集成。由于已知的 CORS 问题,我也被迫使用 API 网关。 出现的问题是,前端 CloudSearch 库发送带有编码参数的 ur
我正在创建一个 LambdaRestApi在 CDK 中,我想同时启用 CORS 并使用 addProxy 方法添加任何代理。 我目前有以下 CDK 代码: const api = new Lam
我们可以使用 AWS API Gateway 使用双向 SSL 功能吗?我们希望在我们的实时流应用程序中使用 API Gateway 作为 kinesis 的代理。 下面是我的要求 客户端向 apig
我正在构建一个无服务器 react 应用程序,它使用 Cognito 进行登录/注销。该应用程序调用 API 网关,该网关配置为使用 Cognito 用户池作为自定义授权方。 我还构建了一个 lamb
我已经浏览了 Google Cloud API Gateway docs并搜索 the public issue tracker但一直无法以某种方式提及它。 我最接近的是this google gro
我正在尝试将使用 spring-cloud-starter-netflix-zuul 的网关迁移到 Spring Cloud Gateway,但我遇到了请求路由问题。 我浏览了以下有关为 Discov
我正在尝试设置我的 API 网关,以便它具有以下简单的方法响应: 我正在使用 CloudFormation,但总是遇到错误。我相信这很简单,但在花了几个小时阅读文档后我陷入了困境。这是我的方法资源(在
我是一名优秀的程序员,十分优秀!