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

溫馨提示×

溫馨提示×

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

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

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

沂源县| 河津市| 凭祥市| 绥棱县| 莱芜市| 巨野县| 包头市| 改则县| 松原市| 醴陵市| 广饶县| 丁青县| 灯塔市| 南澳县| 富民县| 玛沁县| 延庆县| 金寨县| 若羌县| 和平区| 呼和浩特市| 张家界市| 洛川县| 黔西| 西和县| 清原| 平罗县| 延长县| 萨嘎县| 金塔县| 太白县| 九寨沟县| 南充市| 砀山县| 德惠市| 区。| 龙山县| 丽水市| 朝阳区| 博兴县| 洛浦县|