14. CORS 配置
您可以配置网关以控制 CORS 行为。“全局”CORS 配置是 URL 模式到 Spring Framework CorsConfiguration
的 Map。
以下示例配置 CORS:
例 69.application.yml
spring:
cloud:
gateway:
globalcors:
cors-configurations:
'[/**]':
allowedOrigins: "https://docs.spring.io"
allowedMethods:
- GET
在前面的示例中,允许来自所有 GET 请求路径的请求的 CORS 请求。docs.spring.io
要为某些网关路由谓词未处理的请求提供相同的 CORS 配置,请将该属性设置为 。
当您尝试支持 CORS 预检请求,并且由于 HTTP 方法为 .spring.cloud.gateway.globalcors.add-to-simple-url-handler-mapping
true
true
options