亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

怎樣解決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

靖宇县| 甘谷县| 滁州市| 新津县| 郁南县| 博爱县| 阿拉善右旗| 林甸县| 泉州市| 青海省| 建始县| 汉川市| 灵石县| 枣庄市| 贞丰县| 六安市| 札达县| 青冈县| 兖州市| 鞍山市| 奉新县| 剑阁县| 望谟县| 聂荣县| 南溪县| 江门市| 焦作市| 杭锦后旗| 鄂尔多斯市| 闵行区| 虹口区| 彭水| 甘洛县| 乌兰浩特市| 都安| 十堰市| 涟水县| 宁都县| 商南县| 临泉县| 衡南县|