且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

预检响应具有无效的 HTTP 状态代码 401 - Spring

更新时间:2022-06-27 05:54:59

http方法为OPTIONS时避免过滤设置状态200

avoid filtering and set status 200 when http method is OPTIONS

if("OPTIONS".equalsIgnoreCase(request.getMethod())) {
    response.setStatus(HttpServletResponse.SC_OK);
} else {
    chain.doFilter(req, res);
}