美文网首页
解决React 访问Spring Boot服务跨域问题

解决React 访问Spring Boot服务跨域问题

作者: AC编程 | 来源:发表于2018-11-08 09:20 被阅读110次

环境:Spring Boot 2.0.5

1、错误提示

has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.

2、配置

/**
 * 跨域请求
 */
@Configuration
@EnableWebMvc
public class CorsConfig implements WebMvcConfigurer {

    @Override
    public void addCorsMappings(CorsRegistry registry) {
        //设置允许跨域的路径
        registry.addMapping("/**")
                //设置允许跨域请求的域名
                .allowedOrigins("*")
                //是否允许证书 不再默认开启
                .allowCredentials(true)
                //设置允许的方法
                .allowedMethods("*")
                //跨域允许时间
                .maxAge(3600);
    }
}

相关文章

  • 解决React 访问Spring Boot服务跨域问题

    环境:Spring Boot 2.0.5 1、错误提示 2、配置

  • JW-JSONP

    去年学习React时碰到过JS跨域访问的问题,当时尝试的解决方案有Jsonp、服务器允许跨域、设置Content-...

  • Spring boot2.4版本跨域问题

    问题描述 spring boot2.4版本之后,延用2.3的跨域方式,访问swagger出错. 2.3版本跨域配置...

  • Spring Boot打war包部署遇到的坑

    Spring Boot解决跨域问题 在Controller层加入@CrossOrigin注解即可 部署 pom.x...

  • Spring Boot 跨域访问

    如何在 Spring Boot 中配置跨域访问呢?Spring Boot 提供了对 CORS 的支持,您可以实现W...

  • 跨域配置

    SpringBoot跨域配置 我们的后端使用Spring Boot。Spring Boot跨域非常简单,只需书写以...

  • Spring Boot 解决跨域问题

    转载的原文链接:https://mp.weixin.qq.com/s/rmEYaHUy8X2GHpTSWhx6dQ...

  • Spring Boot 跨域访问

    什么是跨域访问 当一个资源从与该资源本身所在的服务器不同的域或端口请求一个资源时 ,资源会发起一个跨 域 HTTP...

  • 2019-04-01

    Spring Boot轻松跨域:Spring Boot中采用注解轻松实现跨域的一个基础例子 1.项目结构,conf...

  • iframe 实现预览组件

    整体页面 异常问题跨域访问url导致 解决将代码放入同一服务器下访问

网友评论

      本文标题:解决React 访问Spring Boot服务跨域问题

      本文链接:https://www.haomeiwen.com/subject/dfyixqtx.html