In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
How to solve the cross-domain problem of springcloud alibaba gateway, I believe that many inexperienced people are at a loss about it. Therefore, this paper summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.
1. Write a configuration class CorsConfig (if not, you don't have to write this class, depending on the version of springcloud)
Package net.youqu.micro.service.config;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.web.cors.CorsConfiguration;import org.springframework.web.cors.reactive.CorsWebFilter;import org.springframework.web.cors.reactive.UrlBasedCorsConfigurationSource;import org.springframework.web.util.pattern.PathPatternParser;/** * description: * java project www.fhadmin.org * / @ Configurationpublic class CorsConfig {@ Beanpublic CorsWebFilter corsFilter () {CorsConfiguration config = new CorsConfiguration () Config.addAllowedMethod ("*"); config.addAllowedOrigin ("*"); config.addAllowedHeader ("*"); UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource (new PathPatternParser ()); source.registerCorsConfiguration ("/ *", config); return new CorsWebFilter (source);}}
two。 Configure application.properties mode
#-gateway configuration-# Cross-domain configuration spring.cloud.gateway.globalcors.corsConfigurations. [/ * *] .allowedOrigins = * spring.cloud.gateway.globalcors.corsConfigurations. [/ * *] .allowedHeaders=*spring.cloud.gateway.globalcors.corsConfigurations. [/ * *] .allowedMethods = * spring.cloud.gateway.globalcors.corsConfigurations. [/ * *] .allowCredentials=true
Yaml mode
Spring: cloud:gateway: globalcors:corsConfigurations:'[/ *]': allowCredentials: trueallowedHeaders:'* 'allowedMethods:' * 'allowedOrigins:' * 'after reading the above, have you mastered how to solve the cross-domain problem of springcloud alibaba gateway? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.