在网关中配置xiaohua-service,weather-service路由,建议配到网关的外部配置文件中 在网关中配置允许ajax跨域
时间: 2024-03-07 08:52:59 浏览: 139
服务端配置实现AJAX跨域请求
在Spring Cloud Gateway中配置路由和跨域可以通过application.yml或application.properties等外部配置文件进行。以下是一个示例:
```
server:
port: 8080
spring:
application:
name: gateway-service
cloud:
gateway:
routes:
- id: xiaohua-service
uri: http://xiaohua-service:8081
predicates:
- Path=/xiaohua/**
filters:
- RewritePath=/xiaohua/(?<segment>.*), /$\{segment}
- id: weather-service
uri: http://weather-service:8082
predicates:
- Path=/weather/**
filters:
- RewritePath=/weather/(?<segment>.*), /$\{segment}
globalcors:
corsConfigurations:
'[/**]':
allowedOrigins: '*'
allowedMethods:
- GET
- POST
allowedHeaders:
- '*'
allowCredentials: true
maxAge: 3600
```
在上面的示例中,`xiaohua-service`和`weather-service`是两个后端服务的名称,它们分别监听在8081和8082端口。我们在网关中配置了两个路由,一个是以`/xiaohua/**`开头的请求将被路由到`xiaohua-service`,另一个是以`/weather/**`开头的请求将被路由到`weather-service`。
在最后面的`globalcors`部分,我们配置了全局的跨域规则,允许所有来源的请求访问网关。此外,我们还指定了允许的HTTP方法、HTTP头和凭证信息。
阅读全文