【发布时间】:2011-07-25 06:21:07
【问题描述】:
我有这个结构的对象
公共类清理{
private Contacts contact;
private List<Contacts> dnb360;
private String operation;
public String getOperation() {
return operation;
}
public void setOperation(String operation) {
this.operation = operation;
}
public Contacts getContact() {
return contact;
}
public void setContact(Contacts contact) {
this.contact = contact;
}
public List<Contacts> getDnb360() {
return dnb360;
}
public void setDnb360(List<Contacts> dnb360) {
this.dnb360 = dnb360;
}
在 jsp 中,我得到了清理对象的列表
谁能告诉我如何绑定这个列表并在控制器中获取提交的值
【问题讨论】:
标签: spring data-binding