1. 程式人生 > >springmvc學習筆記(24)——重定向和轉發

springmvc學習筆記(24)——重定向和轉發

重定向
重定向也是web開發中常用的,在springmvc中,重定向相當的簡單

    @RequestMapping("/index")
    public String index(){
        return "redirect:hello";
    }

輕輕鬆鬆,轉發給hello.jsp

轉發
同樣的,轉發網頁也是一樣的方法   

 @RequestMapping("/index")
    public String index(){
        return "forward:hello";
    }

response.sendRedirect(absolutePath + "/a/forbidden");

 重定向和轉發都是以HttpRequest為基礎的。他們尋找的是controller中的路徑。

例如上面的/a/forbidden

是: