Spring-Gateway yml 配置全局跨域配置

 spring:
 	cloud:     
      globalcors: # 全局跨域处理
        add-to-simple-url-handler-mapping: true # 解决options请求被拦截问题
        cors-configurations:
          '[/**]':
            allowedOrigins: # 允许哪写网站的跨域请求
              - "http://localhost:6090"
            allowed-methods: # 允许的跨域ajax请求方式
              - "GET"
              - "POST"
              - "DELETE"
              - "PUT"
              - "OPTIONS"
            allowedHeaders: "*" # 允许在请求中携带的头信息
            allowCredentials: true # 是否允许携带cookie
            maxAge: 3600000 # 这次跨域检测的有效期

你可能感兴趣的:(spring,cloud,gateway,微服务)