文章目录
一:什么是跨域1:为什么会出现跨域问题 2:什么是跨域 3:非同源限制 4:如何解决跨域问题 二:SpringBoot解决跨域问题1:配置CorsFilter(全局跨域) 2:重写WebMvcConfigurer(全局跨域) 3:使用注解@CrossOrigin(局部跨域) 一:什么是跨域 1:为什么会出现跨域问题 出于浏览器的同源策略限制。同源策略(Sameoriginpolicy)是一种约定,它是浏览器最核心也最基本的安全功能,如果缺少了同源策略,则浏览器的正常功能可能都会受到影响。可以说Web是构建在同源策略基础之上的,浏览器只是针对同源策略的一种实现。同源策略会阻止一个域的javascript脚本和另外一个域的内容进行交互。所谓同源(即指在同一个域)就是两个页面具有相同的协议(protocol),主机(host)和端口号(port)
简单说A应用只能访问A应用后台传来数据,B应用只能访问B应用后台传来的数据,如果A应用用Ajax获取数据时的URL地址中的协议、端口、域名 其中有一个和B应用对应的话,则是A应用跨域了想获取B应用数据,是不允许的
2:什么是跨域 当一个请求url的 协议、域名、端口 三者之间任意一个与当前页面url不同即为跨域
3:非同源限制 浏览器为了安全性,限制了一些请求无法访问非同源URL
1 2 3 【1】无法读取非同源网页的 Cookie、LocalStorage 和 IndexedDB 【2】无法接触非同源网页的 DOM 【3】无法向非同源地址发送 AJAX 请求
4:如何解决跨域问题 服务端使用纯代码的方式逻辑解决跨域问题,如果使用SpringBoot的话请看下章
【腾讯文档】JSONP跨域解决 https://docs.qq.com/doc/DVEVTemdrcVVjSFlE
二:SpringBoot解决跨域问题 1 2 3 4 5 6 7 8 五种解决方式: ①:返回新的CorsFilter ②:重写WebMvcConfigurer ③:使用注解@CrossOrigin ④:手动设置响应头(HttpServletResponse)参考第一章第四节注意: CorFilter / WebMvConfigurer / @CrossOrigin 需要 SpringMVC 4.2以上版本才支持,对应springBoot 1.3版本以上 上面前两种方式属于全局 CORS 配置,后两种属于局部 CORS配置。如果使用了局部跨域是会覆盖全局跨域的规则,所以可以通过 @CrossOrigin 注解来进行细粒度更高的跨域资源控制。 其实无论哪种方案,最终目的都是修改响应头,向响应头中添加浏览器所要求的数据,进而实现跨域
1:配置CorsFilter(全局跨域) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 import org.springframework.boot.SpringBootConfiguration;import org.springframework.context.annotation.Bean;import org.springframework.web.cors.CorsConfiguration;import org.springframework.web.cors.UrlBasedCorsConfigurationSource;import org.springframework.web.filter.CorsFilter;@SpringBootConfiguration public class WebGlobalConfig { @Bean public CorsFilter corsFilter () { CorsConfiguration config = new CorsConfiguration (); config.addAllowedOrigin("*" ); config.addAllowedHeader("*" ); config.addExposedHeader("*" ); config.addAllowedMethod("GET" ); config.addAllowedMethod("PUT" ); config.addAllowedMethod("POST" ); config.addAllowedMethod("DELETE" ); config.setAllowCredentials(true ); UrlBasedCorsConfigurationSource corsConfigurationSource = new UrlBasedCorsConfigurationSource (); corsConfigurationSource.registerCorsConfiguration("/**" , config); return new CorsFilter (corsConfigurationSource); } }
如果你使用的是高版本SpringBoot2.4.4 则需要改动一下,否则后台报错
java.lang.IllegalArgumentException: When allowCredentials is true, **allowedOrigins** cannot contain the special value "*" since that cannot be set on the "Access-Control-Allow-Origin" response header. To allow credentials to a set of origins, list them explicitly or consider using **"allowedOriginPatterns"** instead.
at org.springframework.web.cors.CorsConfiguration.validateAllowCredentials(CorsConfiguration.java:453) ~[spring-web-5.3.6.jar:5.3.6]
当allowCredentials为true时,alloedOrigins不能包含特殊值“*”,因为该值不能在“Access-Control-Allow-Origin”响应头部中设置。要允许凭据访问一组来源,请显式列出它们或考虑改用“AllowedOriginPatterns”。
解决:把 config.addAllowedOrigin(“*“); 替换成 config.addAllowedOriginPattern(“*“);
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 import org.springframework.boot.SpringBootConfiguration;import org.springframework.web.servlet.config.annotation.CorsRegistry;import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;@SpringBootConfiguration public class CorsConfig implements WebMvcConfigurer { @Override public void addCorsMappings (CorsRegistry registry) { registry.addMapping("/**" ) .allowCredentials(true ) .allowedOriginPatterns("*" ) .allowedMethods(new String []{"GET" , "POST" , "PUT" , "DELETE" }) .allowedHeaders("*" ) .exposedHeaders("*" ); } }
3:使用注解@CrossOrigin(局部跨域) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 @Target({ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface CrossOrigin { @AliasFor("origins") String[] value() default {}; @AliasFor("value") String[] origins() default {}; String[] originPatterns() default {}; String[] allowedHeaders() default {}; String[] exposedHeaders() default {}; RequestMethod[] methods() default {}; String allowCredentials () default "" ; long maxAge () default -1 ; }
①:在控制器(类上)使用@CrossOrigin注解,表示该类的所有方法允许跨域
1 2 3 4 5 6 7 8 9 10 11 12 @Controller @RequestMapping("/shop") @CrossOrigin(originPatterns = "*", methods = {RequestMethod.GET, RequestMethod.POST}) public class ShopController { @GetMapping("/") @ResponseBody public Map<String, Object> findAll () { return DataSchool.getStudents(); } }
②:我们也可以设置更小的粒度,在方法上设置跨域
1 2 3 4 5 6 7 8 9 10 11 12 13 @Controller @RequestMapping("/shop") public class ShopController { @GetMapping("/") @ResponseBody @CrossOrigin(originPatterns = "http://localhost:8080") public Map<String, Object> findAll () { return DataSchool.getStudents(); } }