91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎樣解決springcloud alibaba gateway跨域問題

發布時間:2021-09-18 10:58:16 來源:億速云 閱讀:234 作者:柒染 欄目:編程語言

怎樣解決springcloud alibaba gateway跨域問題,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

1.寫個配置類CorsConfig (如果不行,可以不寫此類,和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項目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);
    }
}

2. 配置 application.properties 方式

#--------gateway配置--------#跨域配置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 方式

spring:  cloud:gateway:      globalcors:corsConfigurations:          '[/**]':allowCredentials: trueallowedHeaders: '*'allowedMethods: '*'allowedOrigins: '*'

看完上述內容,你們掌握怎樣解決springcloud alibaba gateway跨域問題的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阜新| 萝北县| 安陆市| 额尔古纳市| 安平县| 苏尼特左旗| 邯郸市| 兰州市| 靖州| 安图县| 凤凰县| 普兰店市| 泸水县| 鄂托克旗| 莱阳市| 麻江县| 庆阳市| 赞皇县| 大石桥市| 依兰县| 奉化市| 宁德市| 莱芜市| 射阳县| 金华市| 富蕴县| 错那县| 湖北省| 本溪市| 古浪县| 成武县| 娱乐| 仪陇县| 云霄县| 教育| 鹤山市| 南宫市| 嘉鱼县| 海兴县| 永城市| 南充市|