溫馨提示×

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

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

Spring Boot中CORS跨域資源共享

發(fā)布時(shí)間:2024-11-15 12:04:00 來(lái)源:億速云 閱讀:78 作者:小樊 欄目:編程語(yǔ)言

在Spring Boot中,CORS(跨域資源共享)是一種允許來(lái)自不同源的Web應(yīng)用程序之間共享資源的機(jī)制。為了在Spring Boot應(yīng)用程序中實(shí)現(xiàn)CORS,你可以使用以下幾種方法:

  1. 全局CORS配置

在Spring Boot中,你可以通過(guò)實(shí)現(xiàn)WebMvcConfigurer接口來(lái)配置全局CORS。首先,創(chuàng)建一個(gè)新的配置類(lèi),然后實(shí)現(xiàn)addCorsMappings方法來(lái)定義允許的跨域請(qǐng)求。例如:

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("/**") // 允許跨域請(qǐng)求訪問(wèn)所有路徑
                .allowedOrigins("*") // 允許來(lái)自任何源的請(qǐng)求
                .allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS") // 允許的HTTP方法
                .allowedHeaders("*") // 允許的請(qǐng)求頭
                .allowCredentials(true) // 是否發(fā)送Cookie
                .maxAge(3600); // 預(yù)檢請(qǐng)求的有效時(shí)間(秒)
    }
}
  1. 使用@CrossOrigin注解

你還可以在控制器類(lèi)或方法上使用@CrossOrigin注解來(lái)定義允許的跨域請(qǐng)求。例如:

import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@CrossOrigin(origins = "*", allowedMethods = {"GET", "POST"}, allowedHeaders = "*", allowCredentials = "true")
public class MyController {

    @GetMapping("/hello")
    public String hello() {
        return "Hello, World!";
    }
}
  1. 使用CorsConfigurationSource

在Spring Boot中,你還可以通過(guò)配置CorsConfigurationSource來(lái)定義允許的跨域請(qǐng)求。例如:

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 {

    @Bean
    public CorsFilter corsFilter() {
        UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
        CorsConfiguration config = new CorsConfiguration();
        config.setAllowedOrigins(Arrays.asList("*"));
        config.setAllowedMethods(Arrays.asList("GET", "POST", "PUT", "DELETE", "OPTIONS"));
        config.setAllowedHeaders(Arrays.asList("*"));
        config.setAllowCredentials(true);
        source.registerCorsConfiguration("/**", config);
        return new CorsFilter(source);
    }
}

這些方法都可以幫助你在Spring Boot應(yīng)用程序中實(shí)現(xiàn)CORS跨域資源共享。你可以根據(jù)自己的需求選擇合適的方法。

向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