美文网首页
关于springboot拦截器跨域设置的问题

关于springboot拦截器跨域设置的问题

作者: 不是城里鱼 | 来源:发表于2018-12-07 15:25 被阅读0次

    由于前后端分离的部署情况,后台设置了允许跨域请求

    在测试环境中发现,被拦截器拦截的请求responseheader并没有设置跨域。

    这是个没注意到坑,补上代码

    //拦截器跨域请求设置
                    response.setHeader("Access-Control-Allow-Methods", "POST, GET, OPTIONS, DELETE");
                    response.setHeader("Access-Control-Max-Age", "3600");
                    response.setHeader("Access-Control-Allow-Credentials", "true");
                    response.setHeader("Access-Control-Allow-Headers", "x-requested-with");
                    response.setHeader("Access-Control-Allow-Origin", request.getHeader("Origin"));
    

    相关文章

      网友评论

          本文标题:关于springboot拦截器跨域设置的问题

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