首页 > 编程语言 > 详细

Spring Boot + Vue 跨域请求问题

时间:2019-12-01 10:20:52      阅读:59      评论:0      收藏:0      [点我收藏+]

使用Spring Boot + Vue 做前后端分离项目搭建,实现登录时,出现跨域请求

Access to XMLHttpRequest at ‘http://localhost/open/login‘ from origin ‘http://localhost:8080‘ has been blocked by CORS policy: 
No ‘Access-Control-Allow-Origin‘ header is present on the requested resource.

Vue中使用的Axios,配置main.js文件

Axios.defaults.baseURL = ‘http://localhost:80‘
Axios.defaults.headers[‘Content-Type‘] = ‘application/x-www-form-urlencoded;charset=UTF-8‘
Axios.defaults.withCredentials = true

Spring Boot中重写WebMvcConfigurationSupport的方法addCorsMapping

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;

@Configuration
public class WebMvcConfig extends WebMvcConfigurationSupport{


    @Override
    public void addCorsMappings(CorsRegistry registry) {
        String[] origins = {"http://localhost:8080"};
        registry.addMapping("/**")
                .allowedOrigins(origins)
                .allowCredentials(true)
                .allowedMethods("*")
                .allowedHeaders("*")
                .maxAge(3600);
    }
}

 

参考:https://blog.csdn.net/qq_16645099/article/details/89415997

Spring Boot + Vue 跨域请求问题

原文:https://www.cnblogs.com/hjy415340835/p/11964782.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!