springboot通过CORS(cross-origin resourse sharing 跨域资源共享)解决跨域问题
源
简单来说,源就是指协议,域名和端口号,所谓同源就是协议相同,域名相同,端口号相同,以下举个例子:
对于 http://www.aa.com/test/index.html 判断是否同源(协议为http协议,域名为www.aa.com,端口号为80(默认,可以省略))
1、http://www.aa.com/bb/index.html ——同源;
2、http://www.baidu.aa.com/bb/index.html ——非同源,域名不一致;
3、https://www.aa.com/bb/ind
原创
2021-07-07 11:18:02 ·
738 阅读 ·
0 评论