SpringBoot 中通过 CORS 解决跨域问题
Posted 几多心中创伤 —《谁伴我闯荡》
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot 中通过 CORS 解决跨域问题相关的知识,希望对你有一定的参考价值。
同源策略
源(origin)就是协议(http)、域名(localhost)和端口号(8080),同源是指协议、域名以及端口要相同。
No ‘Access-Control-Allow-Origin‘ header is present on the requested resource.
后端使用CORS(跨域源资源共享)(CORS,Cross-origin resource sharing)实现跨域
- 全局配置
@Configuration public class WebMvcConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") //允许跨域的路径 .allowedOrigins("*") //允许的所有域名 //.allowedOrigins("http://localhost:8081") //允许的指定域名 .allowedMethods("*") //允许的方法 .allowedHeaders("*"); //允许的请求头 } }
- 局部配置
- 在方法上
@RestController public class HelloController { @CrossOrigin(value = "http://localhost:8081") @GetMapping("/hello") public String hello() { return "hello"; } @CrossOrigin(value = "http://localhost:8081") @PostMapping("/hello") public String hello2() { return "post hello"; } }
-
- 在Controller上
@RestController @CrossOrigin(value = "http://localhost:8081") public class HelloController { @GetMapping("/hello") public String hello() { return "hello"; } @PostMapping("/hello") public String hello2() { return "post hello"; } }
以上是关于SpringBoot 中通过 CORS 解决跨域问题的主要内容,如果未能解决你的问题,请参考以下文章
Egg 中通过 Egg-cors 配置服务器端允许跨域以及 Cookie 允许跨域
Egg 中通过 Egg-cors 配置服务器端允许跨域以及 Cookie 允许跨域
Koa 中通过 Koa2-cors 配置服务器端允许跨域以及 Cookie 允许跨域
Koa 中通过 Koa2-cors 配置服务器端允许跨域以及 Cookie 允许跨域