Java CORS:跨越资源边界,探索跨域资源共享的无限可能
在Java中,可以通过添加CORS(跨源资源共享)支持来解决跨域问题。以下是一个简单的示例,演示如何在Spring Boot应用程序中配置CORS。
import org.springframework.context.annotation.Bean;
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 {
@Bean
public WebMvcConfigurer corsConfigurer() {
return new WebMvcConfigurer() {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**") // 允许跨域的路径
.allowedOrigins("*") // 允许跨域请求的域名
.allowedMethods("GET", "POST", "PUT", "DELETE") // 允许的请求方法
.allowedHeaders("*") // 允许的请求头
.allowCredentials(true); // 是否允许证书(cookies)
}
};
}
}
这段代码创建了一个配置类CorsConfig
,其中定义了一个WebMvcConfigurer
的实现,用于添加CORS的映射。在这个例子中,我们允许所有来自任何域的跨域请求,对所有HTTP方法进行了允许,并允许所有请求头。这是一个基本的配置,实际应用中可能需要根据具体需求调整允许的域、方法和头信息。
评论已关闭