0

我有一个供用户输入小狗信息的jsp。

<FORM  action="/publish" method="post" commandName="puppy" >
    <table border=0 cellspacing=0 cellpadding="0">
       <% String[] textFields = {"category", "name", "gender", "age", "price"};
            for (int j= 0; j<textFields.length; j++){      %>
            <tr>  <td> <%=textFields[j]%>:                        </td>
                  <td> <input type=text name=<%=textFields[j]%>>  </td>
            </tr>
           <% } %>
    </table>
    <input type = "submit" value="submit">
</FORM>

我有一个包含类别、名称、性别、年龄、价格的小狗对象。

在控制器中,我想获取用户写入的小狗信息

@RequestMapping(value = "/publish")
public String publish (@ModelAttribute("puppy") Puppy newP, BindingResult result){
        System.out.println("Puppyname: " + newP.getName());
        return "redirect:publish.jsp";
}

这不起作用。谢谢你的帮助!

4

2 回答 2

0

Spring 3.1+ RedirectAttributes(又名 FlashAttributes)是你的朋友。

带有示例的随机博客链接http://vard-lokkur.blogspot.co.uk/2012/02/spring-mvc-flash-attributes.html

于 2012-09-17T15:02:26.890 回答
0

您必须使用 Spring MVC 标签库。在表单中为Puppy类的每个属性输入一个输入,例如:

<s:input  path="name" />

显然,您的类中必须有category, name, gender, age,price属性Puppy以及它们的公共访问器。

于 2012-09-17T15:04:40.463 回答