Spring中的Path属性[关闭]

问题描述 投票:20回答:1

任何人都可以解释一下path属性如何在Spring中将对象从html表单绑定到Java类。我是春天网页框架的新手,请帮忙。

java spring class
1个回答
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

© www.soinside.com 2019 - 2024. All rights reserved.