中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

仁怀市| 霸州市| 安达市| 多伦县| 田东县| 县级市| 西林县| 靖宇县| 和龙市| 中卫市| 沿河| 黎平县| 肥东县| 博客| 资中县| 集安市| 富顺县| 凤山市| 绍兴市| 秭归县| 贵德县| 张家口市| 雅安市| 石河子市| 福建省| 岳西县| 资溪县| 临安市| 通州市| 平定县| 湟中县| 上林县| 湖州市| 灵武市| 甘洛县| 永泰县| 论坛| 中山市| 星子县| 甘孜| 黑龙江省|