您好,登錄后才能下訂單哦!
在Spring Boot中配置跨域資源共享(CORS)非常簡(jiǎn)單。你可以通過以下幾種方法來實(shí)現(xiàn):
@CrossOrigin
注解在你的Controller類或方法上添加@CrossOrigin
注解,就可以實(shí)現(xiàn)跨域資源共享。
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class MyController {
@CrossOrigin(origins = "http://localhost:8080") // 允許來自指定源的請(qǐng)求
@GetMapping("/hello")
public String hello() {
return "Hello, World!";
}
}
你可以通過實(shí)現(xiàn)WebMvcConfigurer
接口來全局配置CORS。
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 WebConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**") // 允許所有路徑
.allowedOrigins("*") // 允許所有源
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS") // 允許所有方法
.allowedHeaders("*") // 允許所有頭部
.allowCredentials(true); // 允許發(fā)送Cookie
}
}
@EnableWebMvc
和WebMvcConfigurer
如果你需要更細(xì)粒度的控制,可以使用@EnableWebMvc
注解來禁用Spring Boot的默認(rèn)CORS配置,然后手動(dòng)配置CORS。
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
@EnableWebMvc // 禁用默認(rèn)的CORS配置
public class WebConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**") // 允許所有路徑
.allowedOrigins("*") // 允許所有源
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS") // 允許所有方法
.allowedHeaders("*") // 允許所有頭部
.allowCredentials(true); // 允許發(fā)送Cookie
}
}
你也可以通過配置一個(gè)Filter來實(shí)現(xiàn)CORS。
import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.filter.CorsFilter;
@Configuration
public class WebConfig {
@Bean
public FilterRegistrationBean<CorsFilter> corsFilter() {
FilterRegistrationBean<CorsFilter> registrationBean = new FilterRegistrationBean<>();
registrationBean.setFilter(new CorsFilter());
registrationBean.addUrlPatterns("/*"); // 允許所有路徑
registrationBean.setAllowedOrigins("*"); // 允許所有源
registrationBean.setAllowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS"); // 允許所有方法
registrationBean.setAllowedHeaders("*"); // 允許所有頭部
registrationBean.setAllowCredentials(true); // 允許發(fā)送Cookie
return registrationBean;
}
}
以上就是在Spring Boot中配置跨域資源共享的幾種方法。你可以根據(jù)自己的需求選擇合適的方法來實(shí)現(xiàn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。