springboot完美跨域 解决sessionId不一致问题

增加mvc配置类

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

vue需要再main.js的import下增加以下代码

axios.defaults.withCredentials = true

jquery需要再每次使用ajax时增加如下配置

xhrFields:{
    withCredentials:true
}

 

 

你可能感兴趣的:(spring,springboot经验总结,springboot,springboot跨域,sessionId不一致,前后端分离)