如何在spring-mvc中将参数传递给重定向页面

时间:2013-10-08 13:29:05

标签: java spring spring-mvc

我写过以下控制器:

@RequestMapping(value="/logOut", method = RequestMethod.GET )
    public String logOut(Model model, RedirectAttributes redirectAttributes)  {
        redirectAttributes.addFlashAttribute("message", "success logout");
        System.out.println("/logOut");
        return "redirect:home.jsp";
    }

如何更改第home.jsp页上的此代码我可以撰写${message}并查看"success logout"

1 个答案:

答案 0 :(得分:8)

当返回值包含redirect:前缀时,viewResolver会将此识别为需要重定向的特殊指示。视图名称的其余部分将被视为重定向URL。客户端将向此redirect URL发送新请求。因此,您需要将一个处理程序方法映射到此URL以处理重定向请求。

您可以编写这样的处理程序方法来处理重定向请求:

@RequestMapping(value="/home", method = RequestMethod.GET )
public String showHomePage()  {
    return "home";
}

您可以重新编写logOut处理程序方法:

@RequestMapping(value="/logOut", method = RequestMethod.POST )
public String logOut(Model model, RedirectAttributes redirectAttributes)  {
    redirectAttributes.addFlashAttribute("message", "success logout");
    System.out.println("/logOut");
    return "redirect:/home";
}

修改

您可以在应用程序配置文件中使用此条目避免使用showHomePage方法:

<beans xmlns:mvc="http://www.springframework.org/schema/mvc"
 .....
 xsi:schemaLocation="...
 http://www.springframework.org/schema/mvc
 http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
 ....>

<mvc:view-controller path="/home" view-name="home" />
 ....
</beans>

这会将/home的请求转发给名为home的视图。如果在视图生成响应之前没有要执行的Java控制器逻辑,则此方法是合适的。