当我们需要将spring boot以restful接口的方式对外提供服务的时候,如果此时架构是前后端分离的,那么就会涉及到跨域的问题,那怎么来解决跨域的问题了,下面就来探讨下这个问题。
需要JAVA Spring Cloud大型企业分布式微服务云构建的B2B2C电子商务平台源码请加企鹅求求 :二一四七七七五六三三
解决方案一:在Controller上添加@CrossOrigin注解
使用方式如下:
@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;
}
}
解决方案二:全局配置
代码如下:
@Configuration
public class MyConfiguration {
@Bean
public WebMvcConfigurer corsConfigurer() {
return new WebMvcConfigurerAdapter() {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping(\"/**\")
.allowCredentials(true)
.allowedMethods(\"GET\");
}
};
}
}
解决方案三:结合Filter使用
在spring boot的主类中,增加一个CorsFilter
/**
*
* attention:简单跨域就是GET,HEAD和POST请求,但是POST请求的\"Content-Type\"只能是application/x-www-form-urlencoded, multipart/form-data 或 text/plain
* 反之,就是非简单跨域,此跨域有一个预检机制,说直白点,就是会发两次请求,一次OPTIONS请求,一次真正的请求
*/
@Bean
public CorsFilter corsFilter() {
final Url dCorsConfigurationSource source = new Url dCorsConfigurationSource();
final CorsConfiguration config = new CorsConfiguration();
config.setAllowCredentials(true); // 允许cookies跨域
config.addAllowedOrigin(\"*\");// #允许向该服务器提交请求的URI,*表示全部允许,在SpringMVC中,如果设成*,会自动转成当前请求头中的Origin
config.addAllowedHeader(\"*\");// #允许访问的头信息,*表示全部
config.setMaxAge(18000L);// 预检请求的缓存时间(秒),即在这个时间段里,对于相同的跨域请求不会再预检了
config.addAllowedMethod(\"OPTIONS\");// 允许提交请求的方法,*表示全部允许
config.addAllowedMethod(\"HEAD\");
config.addAllowedMethod(\"GET\");// 允许Get的请求方法
config.addAllowedMethod(\"PUT\");
config.addAllowedMethod(\"POST\");
config.addAllowedMethod(\"DELETE\");
config.addAllowedMethod(\"PATCH\");
source.registerCorsConfiguration(\"/**\", config);
return new CorsFilter(source);
}
继续阅读与本文标签相同的文章
-
2019云栖大会 | 究竟哪款NoSQL数据库最适合你?
2026-05-18栏目: 教程
-
CNCF 宣布成立应用交付领域小组,正式开启云原生应用时代
2026-05-18栏目: 教程
-
蚂蚁金服体验科技精选1-3期
2026-05-18栏目: 教程
-
9月新规1天顶平时1个月的收入,消费再少也有返利? 再创日赚万元的日子迎接双11
2026-05-18栏目: 教程
-
《Apache Kafka实战》| 每日读本书
2026-05-18栏目: 教程
