gateway跨域配置
时间: 2023-08-24 09:15:43 浏览: 113
在Gateway服务中进行跨域配置有多种方法。一种方法是通过在网关的配置类中进行配置。具体的配置可以在yaml文件中查看,例如在org.springframework.cloud.gateway.config.GlobalCorsProperties类中配置。可以设置allowedOrigins来允许哪些网站的跨域请求,allowedMethods来允许的跨域ajax请求方式,allowedHeaders来允许在请求中携带的头信息,allowCredentials来确定是否允许携带cookie,maxAge来设置跨域检测的有效期。\[2\]
另一种方法是在Gateway服务的application.yml文件中进行配置。可以使用spring.cloud.gateway.globalcors来配置全局的跨域处理,设置allowedOrigins来允许哪些网站的跨域请求,allowedMethods来允许的跨域ajax请求方式,allowedHeaders来允许在请求中携带的头信息,allowCredentials来确定是否允许携带cookie,maxAge来设置跨域检测的有效期。\[3\]
总之,通过配置类或在application.yml文件中进行配置,可以实现Gateway服务的跨域配置。
#### 引用[.reference_title]
- *1* *2* [Spring Cloud Gateway 解决跨域问题](https://blog.csdn.net/weixin_45481406/article/details/127573858)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [Gateway网关-网关的cors跨域配置](https://blog.csdn.net/Leon_Jinhai_Sun/article/details/121186047)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]