我是靠谱客的博主 坦率仙人掌,最近开发中收集的这篇文章主要介绍springcloud-gateway进行跨域访问,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

server:
port: 10010
spring:
application:
name: gateway
cloud:
nacos:
server-addr: localhost:8848
# nacos服务端的地址
gateway:
routes:
- id: user-service
# 路由标识 唯一性
uri: lb://userservice
predicates:
- Path=/user/** # 路径判断,请求是否符合
# filters:
# - AddRequestHeader=truth, hua is awesome
- id: order-service
uri: lb://orderservice
predicates:
- Path=/order/**
default-filters: # 默认过滤器对所有的请求生效
- AddRequestHeader=truth, hua is awesome
globalcors:
add-to-simple-url-handler-mapping: true
# 解决option请求被拦截的问题
cors-configurations:
'[/**]': # 对所有的请求进行拦截
allowedOrigins:
- "http://127.0.0.1:5500"
allowedMethods: #运行跨域的方式
- "GET"
- "POST"
- "PUT"
- "DELETE"
- "OPTIONS"
allowedHeaders: "*"
allowCredentials: true #是否携带cookie
maxAge: 36000 # 这次跨域检测的有效期

最后

以上就是坦率仙人掌为你收集整理的springcloud-gateway进行跨域访问的全部内容,希望文章能够帮你解决springcloud-gateway进行跨域访问所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部