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

溫馨提示×

溫馨提示×

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

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

Spring Boot 中怎么解決跨域請求問題

發布時間:2021-06-22 16:25:45 來源:億速云 閱讀:274 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關Spring Boot 中怎么解決跨域請求問題,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

解決方法

跨域問題可以在前端解決也可以在后端解決,我個人覺得在后端解決更方便一些。

只需要添加一個配置類。

package com.example.demo.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration
public class CorsConfig implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowedOriginPatterns("*")
                .allowedMethods("GET", "HEAD", "POST", "PUT", "DELETE", "OPTIONS")
                .allowCredentials(true)
                .maxAge(3600)
                .allowedHeaders("*");
    }
}

在本項目中,我的源碼放在com.example.demo包下,在這個包中新建一個包,放入該配置類,即可解決跨域問題。

注意allowedOriginPatterns()方法不要用allowedOrigins(),不然項目運行時請求后端接口會報錯。

org.springframework.beans.factory.BeanCreationException: 
Error creating bean with name 'requestMappingHandlerMapping' defined in class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]: Invocation of init method failed; 
nested exception is java.lang.IllegalArgumentException: 
When allowCredentials is true, allowedOrigins cannot contain the special value "*"since that cannot be set on the "Access-Control-Allow-Origin" response header. 
To allow credentials to a set of origins, list them explicitly or consider using "allowedOriginPatterns" instead.

看完上述內容,你們對Spring Boot 中怎么解決跨域請求問題有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

佛教| 夏邑县| 宜良县| 安多县| 东乌| 南溪县| 德阳市| 昌邑市| 贞丰县| 虎林市| 金堂县| 内黄县| 山西省| 河南省| 康平县| 虞城县| 黎平县| 黎城县| 泰和县| 乌鲁木齐市| 广平县| 鄂州市| 汨罗市| 上林县| 易门县| 绵竹市| 贵州省| 大竹县| 凤冈县| 璧山县| 吴川市| 麦盖提县| 巴林左旗| 绥化市| 荃湾区| 剑阁县| 武宁县| 和林格尔县| 南投市| 宝丰县| 千阳县|