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

Posted 赟麟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springcloud网关跨域问题和转发服务的配置相关的知识,希望对你有一定的参考价值。

  • 只需要在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网关跨域问题和转发服务的配置的主要内容,如果未能解决你的问题,请参考以下文章

SpringCloud微服务安全网关安全 3-2 常见的微服务安全整体架构

SpringCloud路由网关Zuul

SpringCloud系列之网关gateway-4.路由功能详解

SpringCloud Zuul网关的简单理解

《springcloud 二》SrpingCloud Zuul 微服务网关搭建

springcloud学习之路: springcloud集成Zuul网关