任何人都可以解释一下path属性如何在Spring中将对象从html表单绑定到Java类。我是Spring网页框架的新手,请帮助。
答案 0 :(得分:44)
长话短说明,使用java bean约定将path属性绑定到java属性中。例如,以下表格:
<form:form method="post" modelAttribute="theStudent">
Name: <form:input type="text" path="name"/>
Cool?: <form:input type"checkbox" path="cool"/>
<button>Save</button>
</form:form>
遵循控制器处理程序方法:
@RequestMapping(...)
public String updateStudent(@ModelAttribute("theStudent") Student student) {
// ...
}
如果使用以下属性定义Student类,则会自动绑定:
public class Student {
private String name;
public String getName() { return this.name; }
public void setName(String name) { this.name = name; }
private boolean cool;
public boolean isCool() { return this.cool; }
public void setCool(boolean cool) { this.cool = cool; }
}
有关JavaBeans对话的更多信息,请访问section 8.3 of the specification document。