springboot RestFul接口跨域解决方法

将spring boot以restful接口的方式对外提供服务的时候,如果此时架构是前后端分离的,那么就会涉及到跨域的问题。

1.局部添加注解方式

1.1在controller层添加

1
@CrossOrigin

1.2在controller层的方法上添加注解

1
2
3
4
5
6
7
8
9
10
@CrossOrigin(allowCredentials="true", 
allowedHeaders="*",
methods={
RequestMethod.GET,
RequestMethod.POST,
RequestMethod.DELETE,
RequestMethod.OPTIONS,
RequestMethod.HEAD,
RequestMethod.PUT,
RequestMethod.PATCH}, origins="*")

例子如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
@CrossOrigin // 注解方式
@RestController
public class HandlerScanController {


@CrossOrigin(allowCredentials="true", allowedHeaders="*", methods={RequestMethod.GET,
RequestMethod.POST, RequestMethod.DELETE, RequestMethod.OPTIONS,
RequestMethod.HEAD, RequestMethod.PUT, RequestMethod.PATCH}, origins="*")
@PostMapping("/confirm")
public Response handler(@RequestBody Request json){

return null;
}

2. 全局配置跨域方法

2.1在WebMVC配置层配置

代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@Configuration
public class MyConfiguration {

@Bean
public WebMvcConfigurer corsConfigurer() {
return new WebMvcConfigurerAdapter() {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowCredentials(true)
.allowedMethods("GET");
}
};
}
}

3.结合Filter使用解决跨域

3.1在spring boot的主类中,增加一个CorsFilter

代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
*
* attention:简单跨域就是GET,HEAD和POST请求,但是POST请求的"Content-Type"只能是application/x-www-form-urlencoded, multipart/form-data 或 text/plain
* 反之,就是非简单跨域,此跨域有一个预检机制,说直白点,就是会发两次请求,一次OPTIONS请求,一次真正的请求
*/
@Bean
public CorsFilter corsFilter() {
final UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
final CorsConfiguration config = new CorsConfiguration();
config.setAllowCredentials(true); // 允许cookies跨域
config.addAllowedOrigin("*");// #允许向该服务器提交请求的URI,*表示全部允许,在SpringMVC中,如果设成*,会自动转成当前请求头中的Origin
config.addAllowedHeader("*");// #允许访问的头信息,*表示全部
config.setMaxAge(18000L);// 预检请求的缓存时间(秒),即在这个时间段里,对于相同的跨域请求不会再预检了
config.addAllowedMethod("GET");// 允许提交请求的方法,*表示全部允许

source.registerCorsConfiguration("/**", config);
return new CorsFilter(source);
}

Over Ending(结束语)

注:

如果微服务多的话,需要在每个服务的主类上都加上这么段代码,这违反了DRY原则,更好的做法是在zuul的网关层解决跨域问题,一劳永逸。

如果还有不了解的,可以在右下方与博主在线沟通

-------------本文结束感谢您的阅读-------------

本文标题:springboot RestFul接口跨域解决方法

文章作者:Jason

发布时间:2019年10月20日 - 21:10

最后更新:2019年10月20日 - 21:10

原始链接:https://jasonssun.github.io/2019/10/20/springboot-RestFul接口跨域解决方法/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。