码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot + Vue 跨域请求问题

时间:2019-12-01 10:09:38      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:detail   res   extend   mapping   local   host   前后端分离   ide   oca   

使用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 跨域请求问题

标签:detail   res   extend   mapping   local   host   前后端分离   ide   oca   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!