HTTP 请求状态码

200    请求成功

304    从缓存中读取

302 + 响应头中定义location: 重定向

    // 自定义重定向
    @RequestMapping("/customRedirection")
    public void customRedirection(HttpServletResponse response) {
        // 告诉给客户端重定向
        response.setStatus(302);
        response.setHeader("location", "loginPage");
        return;
    }

    // 重定向到登陆页面
    @RequestMapping("/redirectloginPage")
    public String redirectLogin() {
        return "redirect:/loginPage";
    }

 

posted @ 2019-08-01 18:02  Chris,Cai  阅读(167)  评论(0编辑  收藏  举报