将参数从Webflow传递到重定向页面

时间:2017-07-18 21:06:05

标签: spring attributes url-redirection spring-webflow

我有这个问题。 我在注册后将用户重定向到/ login页面,但我想将属性从webflow的end-state传递到login.html,其中包含"您已成功注册"。我怎么能做到这一点?

编辑:顺便说一下,我使用百里香。

1 个答案:

答案 0 :(得分:0)

当用户点击注册按钮时,处理注册的方法需要添加模型并将消息作为属性插入并传递到登录页面。

示例:

    //Suppose these is the method which handles the registeration
   void register(Model model)
   {
     model.addAttribute("Message","You are successFully Login");
    return "loginPage";
   }

在login.jsp中,您可以将Message对象作为:

${Message}