springboot解决跨域请求带cookie的问题
程序员文章站
2022-06-24 16:38:29
记录一次解决Spring boot加vue的跨域问题大家都知道vue跨域请求Spring boot的时候,后端服务需要设置registry.addMapping("/**") .allowCredentials(false) .allowedMethods("POST", "GET", "PUT", "OPTIONS", "DELETE") .allowedOrigins("*");前端前端跨域带cookie设置:axios.defaults.wit...
记录一次解决Spring boot加vue的跨域问题
大家都知道vue跨域请求Spring boot的时候,后端服务需要设置
registry.addMapping("/**")
.allowCredentials(false)
.allowedMethods("POST", "GET", "PUT", "OPTIONS", "DELETE")
.allowedOrigins("*");
前端
前端跨域带cookie设置:axios.defaults.withCredentials = true;
后端
服务端返回的response中Access-Control-Allow-Origin
的值为请求的域名和Access-Control-Allow-Credentials
值为true,但是前面设置的允许跨域请求服务时,会导致出错,因为这块.allowCredentials(false)
给设置成了false,所有需要给设置成true,就会允许带cookie的请求了。
总结
不带cookie的请求上面的后端设置是完全合理的,但如果带了cookie请求,.allowCredentials(false)
这块地方必须改成.allowCredentials(true)
,否则带cookie的请求会过不了后端。
本文地址:https://blog.csdn.net/weixin_42886184/article/details/107731834
下一篇: vue使用axios开发知识总结