标签:glob pre oba ring yml strip ons filter 跨域
spring:
application:
name: gateway-web
cloud:
gateway:
globalcors:
cors-configurations:
‘[/**]‘: # 匹配所有请求
allowedOrigins: "*" #跨域处理 允许所有的域
allowedMethods: # 支持的方法
- GET
- POST
- PUT
- DELETE
spring:
application:
name: gateway-web
cloud:
gateway:
routes:
- id: changgou_goods_route
uri: lb://goods
predicates:
- Path=/api/album/**,/api/brand/**,/api/cache/**
filters:
#- PrefixPath=/brand
- StripPrefix=1
#用户微服务
标签:glob pre oba ring yml strip ons filter 跨域
原文地址:https://www.cnblogs.com/shangyunlin/p/12815300.html