首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

SpringBoot 三步骤轻松解决跨域 更新

SpringBoot 三步骤轻松解决跨域 更新

3、在接收到OPTIONS请求时候,需要返回状态码为202,并且设置响应头部(根据需求变更)

    HttpServletResponse httpResponse = response;
            httpResponse.setCharacterEncoding("UTF-8");
            httpResponse.setContentType("application/json; charset=utf-8");
            httpResponse.setHeader("Access-Control-Allow-Origin","*");
            httpResponse.setHeader("Access-Control-Allow-Credentials", "true");
            httpResponse.setHeader("Access-Control-Allow-Methods", "POST,GET,OPTIONS,DELETE,PATCH,PUT");
            httpResponse.setHeader("Access-Control-Max-Age", "3600");
            httpResponse.setHeader("Access-Control-Allow-Headers", "Origin,X-Requested-With,x-requested-with,X-Custom-Header," +
                    "Content-Type,Accept,Authorization");
            String method = request.getMethod();
            if ("OPTIONS".equalsIgnoreCase(method)){
                logger.info("OPTIONS请求");
                httpResponse.setStatus(HttpServletResponse.SC_ACCEPTED);
            }复制代码
返回列表