溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Spring如何在前后端跨域請(qǐng)求設(shè)置

發(fā)布時(shí)間:2020-07-21 17:46:56 來(lái)源:億速云 閱讀:137 作者:小豬 欄目:開(kāi)發(fā)技術(shù)

小編這次要給大家分享的是Spring如何在前后端跨域請(qǐng)求設(shè)置,文章內(nèi)容豐富,感興趣的小伙伴可以來(lái)了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

前后端項(xiàng)目分離,跨域請(qǐng)求時(shí),后端的兩種配置方式:

1.配置類:

package com.helq3.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
import org.springframework.web.filter.CorsFilter;

/**
 * 跨域全局配置
 */
@Configuration
public class CorsConfig {
  private CorsConfiguration buildConfig(){

    CorsConfiguration configuration = new CorsConfiguration();
    //設(shè)置屬性
    //允許跨域請(qǐng)求的地址,*表示所有
    configuration.addAllowedOrigin("*");
    //配置跨域的請(qǐng)求頭
    configuration.addAllowedHeader("*");
    //配置跨域的請(qǐng)求方法
    configuration.addAllowedMethod("*");
    //表示跨域請(qǐng)求的時(shí)候使用的是否是同一個(gè)session
    configuration.setAllowCredentials(true);
    return configuration;
  }
  @Bean
  public CorsFilter corsFilter(){
    UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
    source.registerCorsConfiguration("/**",buildConfig());
    return new CorsFilter(source);
  }
}

2.Controller上面配置

@CrossOrigin(origins = "*",allowedHeaders = "*",methods = {},allowCredentials = "true")
public class TestController {
}

3.Ant Design Vue 中,在src/util/request.js中增加

axios.defaults.withCredentials = true

看完這篇關(guān)于Spring如何在前后端跨域請(qǐng)求設(shè)置的文章,如果覺(jué)得文章內(nèi)容寫得不錯(cuò)的話,可以把它分享出去給更多人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI