您好,登錄后才能下訂單哦!
在Spring Boot中,CORS(跨域資源共享)是一種允許來(lái)自不同源的Web應(yīng)用程序之間共享資源的機(jī)制。為了在Spring Boot應(yīng)用程序中實(shí)現(xiàn)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í)間(秒)
}
}
@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!";
}
}
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ù)自己的需求選擇合適的方法。
免責(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)容。