- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章SpringCloud gateway跨域配置的操作由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
gateway允许跨域的配置和zuul的不一样,记录一下.
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<
parent
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-parent</
artifactId
>
<
version
>2.0.6.RELEASE</
version
>
<
relativePath
/>
<!-- lookup parent from repository -->
</
parent
>
<
properties
>
<
project.build.sourceEncoding
>UTF-8</
project.build.sourceEncoding
>
<
project.reporting.outputEncoding
>UTF-8</
project.reporting.outputEncoding
>
<
java.version
>1.8</
java.version
>
<
spring-cloud.version
>Finchley.SR1</
spring-cloud.version
>
</
properties
>
|
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
63
64
65
66
67
68
|
import
org.springframework.cloud.client.discovery.DiscoveryClient;
import
org.springframework.cloud.gateway.discovery.DiscoveryClientRouteDefinitionLocator;
import
org.springframework.cloud.gateway.discovery.DiscoveryLocatorProperties;
import
org.springframework.cloud.gateway.route.RouteDefinitionLocator;
import
org.springframework.context.annotation.Bean;
import
org.springframework.context.annotation.Configuration;
import
org.springframework.http.HttpHeaders;
import
org.springframework.http.HttpMethod;
import
org.springframework.http.HttpStatus;
import
org.springframework.http.codec.ServerCodecConfigurer;
import
org.springframework.http.codec.support.DefaultServerCodecConfigurer;
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
reactor.core.publisher.Mono;
/**
* 跨域允许
*/
@Configuration
public
class
CorsConfig {
private
static
final
String MAX_AGE =
"18000L"
;
@Bean
public
WebFilter corsFilter() {
return
(ServerWebExchange ctx, WebFilterChain chain) -> {
ServerHttpRequest request = ctx.getRequest();
if
(CorsUtils.isCorsRequest(request)) {
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,
"*"
);
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);
};
}
@Bean
public
ServerCodecConfigurer serverCodecConfigurer() {
return
new
DefaultServerCodecConfigurer();
}
/**
* 如果使用了注册中心(如:Eureka),进行控制则需要增加如下配置
*/
@Bean
public
RouteDefinitionLocator discoveryClientRouteDefinitionLocator(DiscoveryClient discoveryClient,
DiscoveryLocatorProperties properties) {
return
new
DiscoveryClientRouteDefinitionLocator(discoveryClient, properties);
}
}
|
前后端分离普遍都会遇到跨域问题,项目内用到了网关模块,所以我们可以在网关中解决.
增加以下两个类既可 。
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
|
package
com.him.gateway.config;
import
com.him.gateway.filter.CorsResponseHeaderFilter;
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;
/**
* 配置跨域问题
*
* @author liaoyuxing
* @date 2021-5-20
*/
@Configuration
public
class
CorsConfig {
@Bean
public
CorsResponseHeaderFilter corsResponseHeaderFilter() {
return
new
CorsResponseHeaderFilter();
}
@Bean
public
CorsWebFilter corsWebFilter() {
UrlBasedCorsConfigurationSource source =
new
UrlBasedCorsConfigurationSource();
CorsConfiguration corsConfiguration =
new
CorsConfiguration();
corsConfiguration.addAllowedHeader(
"*"
);
corsConfiguration.addAllowedMethod(
"*"
);
corsConfiguration.addAllowedOrigin(
"*"
);
corsConfiguration.setAllowCredentials(
true
);
corsConfiguration.setMaxAge(600L);
source.registerCorsConfiguration(
"/**"
, corsConfiguration);
return
new
CorsWebFilter(source);
}
}
|
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
|
package
com.him.gateway.filter;
import
org.springframework.cloud.gateway.filter.GatewayFilterChain;
import
org.springframework.cloud.gateway.filter.GlobalFilter;
import
org.springframework.cloud.gateway.filter.NettyWriteResponseFilter;
import
org.springframework.core.Ordered;
import
org.springframework.http.HttpHeaders;
import
org.springframework.web.server.ServerWebExchange;
import
reactor.core.publisher.Mono;
import
java.util.ArrayList;
/**
* 跨域请求头重复处理过滤器
*
* @author liaoyuxing
* @date 2021-5-20
*/
public
class
CorsResponseHeaderFilter
implements
GlobalFilter, Ordered {
@Override
public
int
getOrder() {
// 指定此过滤器位于NettyWriteResponseFilter之后
// 即待处理完响应体后接着处理响应头
return
NettyWriteResponseFilter.WRITE_RESPONSE_FILTER_ORDER +
1
;
}
@Override
@SuppressWarnings
(
"serial"
)
public
Mono<Void> filter(ServerWebExchange exchange, GatewayFilterChain chain) {
return
chain.filter(exchange).then(Mono.defer(() -> {
exchange.getResponse().getHeaders().entrySet().stream()
.filter(kv -> (kv.getValue() !=
null
&& kv.getValue().size() >
1
))
.filter(kv -> (kv.getKey().equals(HttpHeaders.ACCESS_CONTROL_ALLOW_ORIGIN)
|| kv.getKey().equals(HttpHeaders.ACCESS_CONTROL_ALLOW_CREDENTIALS)))
.forEach(kv ->
{
kv.setValue(
new
ArrayList<String>() {{
add(kv.getValue().get(
0
));
}});
});
return
chain.filter(exchange);
}));
}
}
|
以上为个人经验,希望能给大家一个参考,也希望大家多多支持我.
原文链接:https://tianyalei.blog.csdn.net/article/details/83626088 。
最后此篇关于SpringCloud gateway跨域配置的操作的文章就讲到这里了,如果你想了解更多关于SpringCloud gateway跨域配置的操作的内容请搜索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,但总是遇到错误。我相信这很简单,但在花了几个小时阅读文档后我陷入了困境。这是我的方法资源(在
我是一名优秀的程序员,十分优秀!