SpringBoot解决跨域请求拦截
前言
同源策略:判断是否是同源的,主要看这三点,协议,ip,端口。
同源策略就是浏览器出于网站安全性的考虑,限制不同源之间的资源相互访问的一种政策。
比如在域名https://www.baidu.com下,脚本不能够访问https://www.sina.com源下的资源,否则将会被浏览器拦截。
注意两点:
1.必须是脚本请求,比如ajax请求。
但是如下情况不会产生跨域拦截
<img src="xxx"/> <a href='xxx"> </a>
2.跨域拦截是前端请求已经发出,并且在后端返回响应时检查相关参数,是否允许接收后端请求。
在微服务开发中,一个系统包含多个微服务,会存在跨域请求的场景。
本文主要讲解springboot解决跨域请求拦截的问题。
搭建项目
这里创建两个web项目,web1 和 web2.
web2项目请求web1项目的资源。
这里只贴关键代码,完整代码参考github
web2
创建一个controller返回html页面
@slf4j @controller public class homecontroller { @requestmapping("/index") public string home(){ log.info("/index"); return "/home"; } }
html页面 home.html
这里创建了一个按钮,按钮按下则请求资源:"http://localhost:8301/hello"
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>web2</title> <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"> </script> <script> $(function () { $("#testbtn").click(function () { console.log("testbtn ..."); $.get("http://localhost:8301/hello",function(data,status){ alert("数据: " + data + "\n状态: " + status); }); }) }) </script> </head> <body> web2 <button id="testbtn">测试</button> </body> </html>
web1
@slf4j @restcontroller public class web1controller { @requestmapping("/hello") public string hello(){ log.info("hello "); return "hello," + new date().tostring(); } }
这里配置两个项目为不同的端口。
web1为8301
web2为8302
因此是不同源的。
测试
在web1还没有配置允许跨域访问的情况下
按下按钮,将会出现错误。显示header中没有access-control-allow-origin
access to xmlhttprequest at 'http://localhost:8301/hello' from origin 'http://localhost:8300' has been blocked by cors policy: no 'access-control-allow-origin' header is present on the requested resource.
web1添加允许跨域请求,通过实现webmvcconfigurer
@configuration public class webmvcconfig implements webmvcconfigurer { @override public void addcorsmappings(corsregistry registry) { registry.addmapping("/hello"); } }
再次访问将会返回正常数据。
除了以上的配置外,还可以做更细致的限制
比如对请求的headers,请求的方法post/get...。请求的源进行限制。
同时还可以使用注解 @crossorigin来替换上面的配置。
@slf4j @restcontroller public class web1controller { @crossorigin @requestmapping("/hello") public string hello(){ log.info("hello "); return "hello," + new date().tostring(); } }
注解可以用在类上,也可以用在方法上,但必须是控制器类
配置和上面一样,也是可以对方法,header,源进行个性化限制。
@target({elementtype.method, elementtype.type}) @retention(retentionpolicy.runtime) @documented public @interface crossorigin { /** @deprecated */ @deprecated string[] default_origins = new string[]{"*"}; /** @deprecated */ @deprecated string[] default_allowed_headers = new string[]{"*"}; /** @deprecated */ @deprecated boolean default_allow_credentials = false; /** @deprecated */ @deprecated long default_max_age = 1800l; @aliasfor("origins") string[] value() default {}; @aliasfor("value") string[] origins() default {}; string[] allowedheaders() default {}; string[] exposedheaders() default {}; requestmethod[] methods() default {}; string allowcredentials() default ""; long maxage() default -1l; }
推荐阅读
-
解决使用elementUI框架el-upload跨域上传时session丢失问题
-
Python的Django应用程序解决AJAX跨域访问问题的方法
-
springBoot 解决前后端分离项目中跨越请求,同源策略
-
JS跨域请求外部服务器的资源
-
基于 HTTP 请求拦截,快速解决跨域和代理 Mock
-
jsonp跨域请求实现示例
-
SpringBoot2.x整合Shiro出现cors跨域问题(踩坑记录)
-
springcloud Springboot vue.js Activiti6 前后分离 跨域 工作流 集成代码生成器 shiro权限
-
利用nginx解决cookie跨域访问的方法
-
Nginx 解决WebApi跨域二次请求以及Vue单页面的问题