当前位置:   article > 正文

springboot之跨域_springboot什么是夸域

springboot什么是夸域

一、跨域的理解

跨域是指:浏览器A服务器B获取的静态资源,包括Html、Css、Js,然后在Js中通过Ajax访问C服务器的静态资源或请求。即:浏览器A从B服务器拿的资源,资源中想访问服务器C的资源。

同源策略是指:浏览器A服务器B获取的静态资源,包括Html、Css、Js,为了用户安全,浏览器加了限制,其中的Js通过Ajax只能访问B服务器的静态资源或请求。即:浏览器A从哪拿的资源,那资源中就只能访问哪。

同源是指:同一个请求协议(如:Http或Https)、同一个Ip、同一个端口,3个全部相同,即为同源。

二、跨域的分类

跨域分为以下3种

名称英文名说明
简单请求Simple Request发起的Http请求符合:
1.无自定义请求头,
2.请求动词为GET、HEAD或POST之一,
3.动词为POST时,Content-Type是application/x-www-form-urlencoded,
multipart/form-data或text/plain之一
预检请求Preflighted Request发起的Http请求符合其中之一:
1.包含了自定义请求头,
2.请求动词不是GET、HEAD或POST,
3.动词是POST时, Content-Type不是application/x-www-form-urlencoded,
multipart/form-data或text/plain。 即:简单请求的相反
凭证请求Requests with Credential发起的Http请求中带有凭证

三、SpringBoot2.x配置Cors

SpringBoot2.x主要提供了两种方式来支持Cors,如下:

方式作用范围说明
@CrossOrigin注解一个Controller中全部接口或是其中一个特定的接口配置、定制特定的请求接口
WebMvcConfigurer对象全部接口适用于全局配置

1、使用@CrossOrigin 注解实现

#如果想要对某一接口配置 CORS,可以在方法上添加 @CrossOrigin 注解 :

  1. @CrossOrigin(origins = {"http://localhost:9000", "null"})
  2. @RequestMapping(value = "/test", method = RequestMethod.GET)
  3. public String greetings() {
  4. return "{\"project\":\"just a test\"}";
  5. }

#如果想对一系列接口添加 CORS 配置,可以在类上添加注解,对该类声明所有接口都有效:

  1. @CrossOrigin(origins = {"http://localhost:9000", "null"})
  2. @RestController
  3. @SpringBootApplication
  4. public class SpringBootCorsTestApplication {
  5. }

2.配置实现,新建过滤器,实现 WebMvcConfigurer接口(springboot2.x的方式)

  1. @Configuration
  2. public class GlobalCorsConfig implements WebMvcConfigurer {
  3. //添加到容器中管理
  4. @Bean
  5. public CorsFilter corsFilter() {
  6. CorsConfiguration config = new CorsConfiguration();
  7. config.addAllowedOrigin("*");
  8. config.setAllowCredentials(true);
  9. config.addAllowedMethod("*");
  10. config.addAllowedHeader("*");
  11. UrlBasedCorsConfigurationSource configSource = new UrlBasedCorsConfigurationSource();
  12. configSource.registerCorsConfiguration("/**", config);
  13. return new CorsFilter(configSource);
  14. }
  15. }

2.springboot2.x之前

  1. @Configuration
  2. public class MyConfiguration extends WebMvcConfigurerAdapter {
  3. @Override
  4. public void addCorsMappings(CorsRegistry registry) {
  5. registry.addMapping("/**")
  6. .allowCredentials(true)
  7. .allowedHeaders("*")
  8. .allowedOrigins("*")
  9. .allowedMethods("*");
  10. }
  11. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/458849
推荐阅读
相关标签
  

闽ICP备14008679号