我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Springboot怎么通过配置WebMvcConfig处理Cors非同源访问跨域问题

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Springboot怎么通过配置WebMvcConfig处理Cors非同源访问跨域问题

这篇文章主要介绍了Springboot怎么通过配置WebMvcConfig处理Cors非同源访问跨域问题的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Springboot怎么通过配置WebMvcConfig处理Cors非同源访问跨域问题文章都会有所收获,下面我们一起来看看吧。

关于Cors跨域的问题,前端有代理和jsonp的常用方式解决这种非同源的访问拒绝策略,什么是同源?即域名一致端口一致但是端口下访问的接口api不同的两种或者几种的互相访问叫做同源访问,但是若是接口不一致或者域名不一致(这里泛指IP不一致),那么对应的就属于非同源访问,浏览器会拒绝发出请求,直接回复404,有时候我也见过恢复202的就是发出去了但是被后端的Mvc处理hander链给拒绝了。那么配置MVC是后端处理Cors问题的一种解决思路。

之前学习过MVC的处理链路,从一次请求发过来到回复数据总共11次处理:

Springboot怎么通过配置WebMvcConfig处理Cors非同源访问跨域问题

请求发送到服务器端时是由我们的MVC进行处理的,而统一调配任务流程的则是我们的请求分发器,注意这里请求到处理器之后回去寻找处理器适配器(符合校验处理的请求才能被允许例如接口含有的合法api,以及跨域原则),之前我们的微信小程序开发过程中是没有考虑跨域问题的,原因是我们知道小程序的请求处理都是由微信后台进行分发处理的,也就是在微信的后台时就做了前端的跨域处理,大概是采用动态代理的方式解决了小程序的跨域。

那么我们先看看MVC的配置接口 WebMvcConfigurer 的源代码:

public interface WebMvcConfigurer {    default void configurePathMatch(PathMatchConfigurer configurer) {    }    default void configureContentNegotiation(ContentNegotiationConfigurer configurer) {    }    default void configureAsyncSupport(AsyncSupportConfigurer configurer) {    }    default void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {    }    default void addFormatters(FormatterRegistry registry) {    }    default void addInterceptors(InterceptorRegistry registry) {    }    default void addResourceHandlers(ResourceHandlerRegistry registry) {    }    default void addCorsMappings(CorsRegistry registry) {    }    default void addViewControllers(ViewControllerRegistry registry) {    }    default void configureViewResolvers(ViewResolverRegistry registry) {    }    default void addArgumentResolvers(List<HandlerMethodArgumentResolver> resolvers) {    }    default void addReturnValueHandlers(List<HandlerMethodReturnValueHandler> handlers) {    }    default void configureMessageConverters(List<HttpMessageConverter<?>> converters) {    }    default void extendMessageConverters(List<HttpMessageConverter<?>> converters) {    }    default void configureHandlerExceptionResolvers(List<HandlerExceptionResolver> resolvers) {    }    default void extendHandlerExceptionResolvers(List<HandlerExceptionResolver> resolvers) {    }    @Nullable    default Validator getValidator() {        return null;    }    @Nullable    default MessageCodesResolver getMessageCodesResolver() {        return null;    }}

它的内部是具备一些处理器解析器以及映射的添加与配置的方法的,那么我们要解决Cros跨域问题就是要考虑addCorsMappings 配置Cros映射,所以我们点进去看看这注册Cros的 CorsRegistry 的源码:

public class CorsRegistry {    private final List<CorsRegistration> registrations = new ArrayList();    public CorsRegistry() {    }    public CorsRegistration addMapping(String pathPattern) {        CorsRegistration registration = new CorsRegistration(pathPattern);        this.registrations.add(registration);        return registration;    }    protected Map<String, CorsConfiguration> getCorsConfigurations() {        Map<String, CorsConfiguration> configs = CollectionUtils.newLinkedHashMap(this.registrations.size());        Iterator var2 = this.registrations.iterator();        while(var2.hasNext()) {            CorsRegistration registration = (CorsRegistration)var2.next();            configs.put(registration.getPathPattern(), registration.getCorsConfiguration());        }        return configs;    }}

从上述代码中不难发现,内部有一个不可改变的 CorsRegistration 数组链表,以及增加映射的方法,主要还是看看它具备的元素 CorsRegistration 含有什么配置项:

public class CorsRegistration {    private final String pathPattern;    private CorsConfiguration config;    public CorsRegistration(String pathPattern) {        this.pathPattern = pathPattern;        this.config = (new CorsConfiguration()).applyPermitDefaultValues();    }    public CorsRegistration allowedOrigins(String... origins) {        this.config.setAllowedOrigins(Arrays.asList(origins));        return this;    }    public CorsRegistration allowedOriginPatterns(String... patterns) {        this.config.setAllowedOriginPatterns(Arrays.asList(patterns));        return this;    }    public CorsRegistration allowedMethods(String... methods) {        this.config.setAllowedMethods(Arrays.asList(methods));        return this;    }    public CorsRegistration allowedHeaders(String... headers) {        this.config.setAllowedHeaders(Arrays.asList(headers));        return this;    }    public CorsRegistration exposedHeaders(String... headers) {        this.config.setExposedHeaders(Arrays.asList(headers));        return this;    }    public CorsRegistration allowCredentials(boolean allowCredentials) {        this.config.setAllowCredentials(allowCredentials);        return this;    }    public CorsRegistration maxAge(long maxAge) {        this.config.setMaxAge(maxAge);        return this;    }    public CorsRegistration combine(CorsConfiguration other) {        this.config = this.config.combine(other);        return this;    }    protected String getPathPattern() {        return this.pathPattern;    }    protected CorsConfiguration getCorsConfiguration() {        return this.config;    }}

我们可以发现内部是具备允许放行:请求头,请求路径,请求方法,请求源策略的方法的,所以我们在这里的 重写addCorsMappings方法配置一个 CorsRegistry 添加相应的路径方法与请求策略放行不就可以解决跨域的问题了?

我们写一个WebMvcConfig配置类实现刚刚研究的WebMvcConfigurer接口重写addCrosMappings配置CrosRegistry即可(或者在api与Controller控制类上打上@CrossOrigin注解也可以解决问题(注解默认放行所有来源的请求)):

@Configurationpublic class WbMvcConfig implements WebMvcConfigurer {    @Override    public void addCorsMappings(CorsRegistry registry) {       registry.addMapping("               .allowCredentials(true);    }    @Bean    public FormContentFilter httpPutFormContentFilter(){        return new FormContentFilter();    }}

我们利用axios写一个简单的请求发送按钮:

    <input type="button" value="get" class="get">    <script>        document.querySelector(".get").onclick = function () {            // 跨域一般是是后端解决的事情            axios.get("http://127.0.0.1:8080/all").then(                function (response) {                    console.log(response)                }            )        }    </script>

再用SpringBoot写一个简单的controller的api:

@RestControllerpublic class testController {    @Autowired    private ProductServiceImpl productService;    @GetMapping("/all")    @ResponseBody    public List<Product> all() {        Page<Product> page = productService.page(1L);        List<Product> productList = new LinkedList<>();        productList.add(page.getRecords().iterator().next());        return productList;    }}

这里我们在浏览器打开5050端口下的这个html文件就可以点击按钮访问接口了:

Springboot怎么通过配置WebMvcConfig处理Cors非同源访问跨域问题

这里可以看到请求访问数据成功了!

关于“Springboot怎么通过配置WebMvcConfig处理Cors非同源访问跨域问题”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“Springboot怎么通过配置WebMvcConfig处理Cors非同源访问跨域问题”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Springboot怎么通过配置WebMvcConfig处理Cors非同源访问跨域问题

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Springboot通过配置WebMvcConfig处理Cors非同源访问跨域问题

这篇文章主要介绍了Springboot通过配置WebMvcConfig处理Cors非同源访问跨域问题,关于Cors跨域的问题,前端有代理和jsonp的常用方式解决这种非同源的访问拒绝策略
2023-05-14

Springboot怎么通过配置WebMvcConfig处理Cors非同源访问跨域问题

这篇文章主要介绍了Springboot怎么通过配置WebMvcConfig处理Cors非同源访问跨域问题的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Springboot怎么通过配置WebMvcConfig处理
2023-07-05

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录