在Spring Boot中配置跨域资源共享(CORS)非常简单。你可以通过以下几种方法来实现:
@CrossOrigin
注解在你的Controller类或方法上添加@CrossOrigin
注解,就可以实现跨域资源共享。
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") // 允许来自指定源的请求
@GetMapping("/hello")
public String hello() {
return "Hello, World!";
}
}
你可以通过实现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); // 允许发送Cookie
}
}
@EnableWebMvc
和WebMvcConfigurer
如果你需要更细粒度的控制,可以使用@EnableWebMvc
注解来禁用Spring Boot的默认CORS配置,然后手动配置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 // 禁用默认的CORS配置
public class WebConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**") // 允许所有路径
.allowedOrigins("*") // 允许所有源
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS") // 允许所有方法
.allowedHeaders("*") // 允许所有头部
.allowCredentials(true); // 允许发送Cookie
}
}
你也可以通过配置一个Filter来实现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); // 允许发送Cookie
return registrationBean;
}
}
以上就是在Spring Boot中配置跨域资源共享的几种方法。你可以根据自己的需求选择合适的方法来实现。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。