有人可以帮我找出为什么我尝试将Collection绑定到Spring MVC中的表单不起作用?
以下是我的对象的样子 -
public class TestObj {
private Integer testNumber;
private String home;
private String destination;
}
这是我的表单对象,其中包含上述对象的列表 -
public class TestForm {
private List<TestObj> testList;
//contains getter and setter for testList
}
在我的控制器中,我实现了formBackingObject方法 -
public class MyController extends SimpleFormController {
public MyController() {
setCommandClass(TestForm.class);
setCommandName("testForm");
}
protected Object formBackingObject(HttpServletRequest request) throws Exception {
if (isFormSubmission(request)) {
testForm = (TestForm) super.formBackingObject(request);
//THIS ALWAYS RETURNS NULL ON FORM SUBMISSION
List<TestObj> testList = testForm.getTestList();
} else {
//load initial data using hibernate. TestObj is hibernate domain object.
List<TestObj> testList = myService.findTestList();
testForm = new TestForm(testList);
}
return testForm;
}
这是我的JSP代码段 -
<form:form commandName="testForm" method="post">
<c:forEach items="${testForm.testList}" var="testvar" varStatus="testRow">
<tr>
<td>
<form:hidden path="testList[${testRow.index}].home" />
<c:out value="${testvar.home}" />
</td>
<td>
<form:input path="testList[${testRow.index}].destination" />
</td>
</tr>
</c:forEach>
<tr><td><input type="submit"></td></tr>
</form:form>
当我第一次加载数据时,表单显示正常,当我按下提交按钮时,控件转到formBackingObject方法,isFormSubmission返回true。但是,当我使用super.formBackingObject(request)获取命令对象时,它返回testList值为null的表单对象。我无法弄清楚为什么这个简单的案例不起作用?
我真的很感激能帮助你实现这个目标。
答案 0 :(得分:0)
答案 1 :(得分:0)
尝试使用以下代码。可能是可以解决你的问题。
private List<TestObj> operationParameterses = LazyList.decorate(new ArrayList<TestObj>(), FactoryUtils.instantiateFactory(TestObj.class));
它不会返回所有空列表。
希望对你有所帮助。
干杯。
答案 2 :(得分:0)
我想我对formBackingObject方法的理解一定是错误的。我从实现中删除了该方法,使用referenceData进行初始表单加载,并使用onSubmit在提交时处理它。这样可以正常工作,并且可以按预期在表单中收集。
感谢大家的帮助。