Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use gatway Gateway to solve Cross-domain problems in springcloud

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

Many beginners are not very clear about how to use gatway gateway to solve cross-domain problems in springcloud. In order to help you solve this problem, the following editor will explain it in detail. People with this need can come and learn. I hope you can get something.

The springcloud gatway gateway solves cross-domain problems. When developing, you encounter application.yml. The settings are as follows, but in my actual development, visual observation does not take effect.

Spring: cloud: gateway: globalcors: corsConfigurations:'[/ *]': allowedOrigins: "*" allowedMethods: "*"

Solutions are as follows:

@ Bean public WebFilter corsFilter () {return (ServerWebExchange ctx, WebFilterChain chain)-> {ServerHttpRequest request = ctx.getRequest (); if (CorsUtils.isCorsRequest (request)) {ServerHttpResponse response = ctx.getResponse (); HttpHeaders headers = response.getHeaders (); headers.add ("Access-Control-Allow-Origin", "*") Headers.add ("Access-Control-Allow-Methods", "*"); headers.add ("Access-Control-Allow-Headers", "*"); headers.add ("Access-Control-Allow-Credentials", "true"); if (request.getMethod () = = HttpMethod.OPTIONS) {response.setStatusCode (HttpStatus.OK) Return Mono.empty ();}} return chain.filter (ctx);} is it helpful for you to read the above content? If you want to know more about the relevant knowledge or read more related articles, please follow the industry information channel, thank you for your support.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report