码迷,mamicode.com
首页 > 编程语言 > 详细

springcloud网关跨域问题和转发服务的配置

时间:2020-05-01 23:50:32      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:glob   pre   oba   ring   yml   strip   ons   filter   跨域   

  • 只需要在yml文件中添加此配置即可
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
#用户微服务

springcloud网关跨域问题和转发服务的配置

标签:glob   pre   oba   ring   yml   strip   ons   filter   跨域   

原文地址:https://www.cnblogs.com/shangyunlin/p/12815300.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!