Spring boot 的跨域访问配置
在Spring Boot中配置跨域访问可以通过实现WebMvcConfigurer
接口,并覆盖addCorsMappings
方法来完成。以下是一个配置示例:
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") // 允许的请求方法
.allowedHeaders("*") // 允许的请求头
.allowCredentials(true); // 是否允许证书(cookies)
}
}
这段代码创建了一个配置类WebConfig
,实现了WebMvcConfigurer
接口,并覆盖了addCorsMappings
方法。在这个方法中,我们指定了对所有路径(/**
)的跨域请求设置,允许任何来源(allowedOrigins("*")
),并且对GET、POST、PUT、DELETE请求方法进行了允许。同时,我们允许所有请求头(allowedHeaders("*")
),并且允许跨域请求携带认证信息(如cookies)。
评论已关闭