HTML 5中新增的跨域资源访问(Cross-Origin Resource Sharing)特性可以让我们在开发后端系统的时候决定资源是否允许被跨域访问。所谓跨域指的是域名不同或者端口不同或者协议不同,比如当从mrbrid.cc网站访问mrbird.cc:8080网站资源就会存在跨域问题。Spring从4.2版本开始就提供了跨域的支持,开箱即用。这里介绍如何在Spring Boot开发中解决跨域的问题,主要分为注解驱动和接口编程的方式。

模拟跨域

要解决跨域问题,我们就得先模拟一个跨域情景。新建Spring Boot项目,版本为2.1.0.RELEASE,并引如下依赖:

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-web</artifactId>
  4. </dependency>
  5. <dependency>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  8. </dependency>

项目结构如下所示:

Spring Boot 中处理跨域 - 图1

com.example.demo路径下新建controller包,并创建TestController

  1. @Controller
  2. public class TestController {
  3. @RequestMapping("index")
  4. public String index () {
  5. return "index";
  6. }
  7. @RequestMapping("hello")
  8. @ResponseBody
  9. public String hello(){
  10. return "hello";
  11. }
  12. }

然后在resources/templates下新建index.html:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>跨域测试</title>
  6. <script src="http://libs.baidu.com/jquery/1.11.3/jquery.min.js"></script>
  7. </head>
  8. <body>
  9. <div id="hello"></div>
  10. </body>
  11. <script>
  12. $(function () {
  13. $.get("http://test.mrbird.cc:8080/hello", function (data) {
  14. $("#hello").text(data);
  15. })
  16. })
  17. </script>
  18. </html>

Mac OS 编辑本地hosts文件:

  1. 用程序里面打开终端(terminal),输入 sudo vi /etc/hosts
  2. 然后提示输入系统密码,hosts文件就自动打开了。
  3. http://test.mrbird.cc网址映射到127.0.0.1上:

Spring Boot 中处理跨域 - 图2

启动项目访问http://localhost:8080/,会发现页面并没有成功显示hello,并且F12观察浏览器控制台会发现其报错了:

Spring Boot 中处理跨域 - 图3

这是因为我们在http://localhost:8080/域名下试图访问http://test.mrbird.cc:8080下的hello接口,这就存在跨域问题,接下来我们来解决这个问题。

注解驱动

Spring 4.2后提供了@CrossOrigin注解,该注解可以标注于方法或者类上,包含了以下属性:

属性 含义
value 指定所支持域的集合,*
表示所有域都支持,默认值为*
。这些值对应HTTP请求头中的Access-Control-Allow-Origin
origins 同value
allowedHeaders 允许请求头中的header,默认都支持
exposedHeaders 响应头中允许访问的header,默认为空
methods 支持请求的方法,比如GET
POST
PUT
等,默认和Controller中的方法上标注的一致。
allowCredentials 是否允许cookie随请求发送,使用时必须指定具体的域
maxAge 预请求的结果的有效期,默认30分钟

我们来改造TestController中的hello方法:

  1. @RequestMapping("hello")
  2. @ResponseBody
  3. @CrossOrigin(value = "*")
  4. public String hello() {
  5. return "hello";
  6. }

表示允许所有域都支持,重启项目,再次访问http://localhost:8080/:

Spring Boot 中处理跨域 - 图4

接口编程

除了使用@CrossOrigin注解外,我们可以使用接口编程的方式进行统一配置。

com.example.demo路径下新建config包,然后创建WebConfigurer,实现WebMvcConfigurer,重写addCorsMappings默认实现:

  1. @Configuration
  2. public class WebConfigurer implements WebMvcConfigurer {
  3. @Override
  4. public void addCorsMappings(CorsRegistry registry) {
  5. registry.addMapping("/**")
  6. .allowedOrigins("*")
  7. .allowedMethods("GET");
  8. }
  9. }

上面配置表示允许所有请求支持跨域访问,并且不限定域,但是支持持GET方法。将hello方法上的@CrossOrigin注解注释掉,重启项目,再次访问http://localhost:8080/,结果也是OK的。

过滤器实现

查看官方文档,发现其还提供了基于过滤器的实现方式:

  1. @Bean
  2. public FilterRegistrationBean corsFilter() {
  3. UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
  4. CorsConfiguration config = new CorsConfiguration();
  5. config.setAllowCredentials(true);
  6. config.addAllowedOrigin("*");
  7. source.registerCorsConfiguration("/**", config);
  8. FilterRegistrationBean bean = new FilterRegistrationBean(new CorsFilter(source));
  9. bean.setOrder(0);
  10. return bean;
  11. }

Actuator跨域

如果项目里集成了Actuator相关功能,其暴露的接口也支持跨域,只需要在配置文件中添加如下配置即可:

ENDPOINTS CORS CONFIGURATION (CorsEndpointProperties)

  1. management.endpoints.web.cors.allow-credentials= # Whether credentials are supported. When not set, credentials are not supported.
  2. management.endpoints.web.cors.allowed-headers= # Comma-separated list of headers to allow in a request. '*' allows all headers.
  3. management.endpoints.web.cors.allowed-methods= # Comma-separated list of methods to allow. '*' allows all methods. When not set, defaults to GET.
  4. management.endpoints.web.cors.allowed-origins= # Comma-separated list of origins to allow. '*' allows all origins. When not set, CORS support is disabled.
  5. management.endpoints.web.cors.exposed-headers= # Comma-separated list of headers to include in a response.
  6. management.endpoints.web.cors.max-age=1800s # How long the response from a pre-flight request can be cached by clients. If a duration suffix is not specified, seconds will be used.