编辑现在,我知道我的问题是由于this引起的。该链接还提供了解决方案,但我似乎无法在第二个列表中弄清楚该如何做。
我将首先向您展示我正在研究的代码结构。
这是MyForm类:
public class MyForm extends ValidatorForm {
private List<ADTO> aDTOList;
// getters and setters for aDTOList below
public ADTO getADTO(int index) {
if (aDTOList == null) {
aDTOList = new ArrayList<ADTO>();
}
if (aDTOList.size() - 1 < index) {
while (aDTOList.size() - 1 < index) {
aDTOList.add(new ADTO());
}
}
return aDTOList.get(index);
}
@Override
protected ActionErrors execValidate(ActionMapping mapping, HttpServletRequest request) {
// BODY NOT SHOWN FOR PRIVACY
}
@Override
public void reset(ActionMapping mapping, HttpServletRequest request) {
super.reset(mapping, request);
this.aDTOList = new ArrayList<ADTO>();
}
}
这是ADTO类:
public class ADTO {
private List<BDTO> bDTOList;
// getters and setters for bDTOList below
}
这是BDTO类:
public class BDTO {
private String sample1;
private String sample2;
// getters and setters for sample1 and sample2 below
}
通过执行以下操作,我已经成功显示了JSP中
aDTOList
的内容:<logic:iterate id="ADTO" name="MyForm" property="aDTOList" indexId="idxRes">
<logic:iterate id="BDTO" name="ADTO" property="bDTOList" indexId="idxLine">
<html:hidden name="BDTO" property="sample1" indexed="true"/>
<html:hidden name="BDTO" property="sample2" indexed="true"/>
</logic:iterate>
</logic:iterate>
现在我的问题是,每当我提交
bDTOList
内部的表单aDTOList
都变为空时,aDTOList
的大小与我显示的原始列表的大小相同,但是唯一的区别是bDTOList
中的所有元素aDTO
为空。如果aDTOList
的大小为2并且每个aDTOList
包含ADTO
的大小也为2,则bDTOList
的结构是这样的。[[null, null],[null, null]]
因此,我认为我的问题是我的表单中没有
getBDTO
,但是我不知道如何实现它。谁能帮助我实现它?还是有其他方法用原始数据填充bDTOList
?注意:我无法更改代码的结构,并且代码仅是示例代码
最佳答案
经过几天的研究和修改代码,我终于能够从JSP检索值并将其发送回表单。我将发布答案以供将来参考。多亏了this website,我才知道问题的原因,并最终提出了解决方案。请参阅以下有关我如何解决问题的详细信息。
我发现问题是由于如果您使用java.util.List而不是Arrays,则Commons BeanUtils中存在带有索引属性的问题,这是因为人们随后在Request范围内的ActionForms遇到“索引超出范围”错误。这就是为什么需要在调用get(int)方法时增加列表的原因。另外,每当调用reset方法时,您都需要重新初始化列表。为此,您需要将此代码粘贴到表单的reset方法中:
public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
aDTOList = ListUtils.lazyList(new java.util.ArrayList(), new Factory() {
public Object create() {
return buildADTOList();
}
});
}
private ADTO buildADTOList() {
ADTO aDTO = new ADTO();
List bDTOList = ListUtils.lazyList(new java.util.ArrayList(), new Factory() {
public Object create() {
return new BDTO();
}
});
aDTO.setBDTOList(bDTOList);
return aDTO;
}
现在,无论何时调用reset方法,您的列表都会恢复到其原始大小。现在的下一个问题是如何从JSP取回值并将它们放回到列表中。为此,您必须注意,JSP标记的结果html name属性的值必须采用
aDTOList[0].bDTOList[0].sample1
格式。但是,如果您使用标记(就像问题在使用一样),则结果html的值将如下所示:例:
<logic:iterate id="ADTO" name="MyForm" property="aDTOList" indexId="idxRes">
<logic:iterate id="BDTO" name="ADTO" property="bDTOList" indexId="idxLine">
<html:hidden name="BDTO" property="sample1" indexed="true"/>
<html:hidden name="BDTO" property="sample2" indexed="true"/>
</logic:iterate>
</logic:iterate>
这将导致:
<input type="hidden" name="BDTO[0].sample1" value="..."/>
<input type="hidden" name="BDTO[0].sample2" value="..."/>
<input type="hidden" name="BDTO[1].sample1" value="..."/>
<input type="hidden" name="BDTO[1].sample2" value="..."/>
<input type="hidden" name="BDTO[0].sample1" value="..."/>
<input type="hidden" name="BDTO[0].sample2" value="..."/>
<input type="hidden" name="BDTO[1].sample1" value="..."/>
<input type="hidden" name="BDTO[1].sample2" value="..."/>
结果不是
aDTOList[0].bDTOList[0].sample1
格式,因此您需要使用<nested:iterate>
。转换后的代码将是:
<nested:iterate property="aDTOList" indexId="idxRes">
<nested:iterate property="bDTOList" indexId="idxLine">
<nested:hidden property="sample1"/>
<nested:hidden property="sample2"/>
</nested:iterate>
</nested:iterate>
这将导致:
<input type="hidden" name="aDTOList[0].bDTOList[0].sample1" value="..."/>
<input type="hidden" name="aDTOList[0].bDTOList[0].sample2" value="..."/>
<input type="hidden" name="aDTOList[0].bDTOList[1].sample1" value="..."/>
<input type="hidden" name="aDTOList[0].bDTOList[1].sample2" value="..."/>
<input type="hidden" name="aDTOList[1].bDTOList[0].sample1" value="..."/>
<input type="hidden" name="aDTOList[1].bDTOList[0].sample2" value="..."/>
<input type="hidden" name="aDTOList[1].bDTOList[1].sample1" value="..."/>
<input type="hidden" name="aDTOList[1].bDTOList[1].sample2" value="..."/>
如您所见,它是
aDTOList[0].bDTOList[0].sample1
格式。然后,您可以从JSP中检索嵌套列表的值,并将其发送回表单。我希望这将为那些被困于解决此类问题的人们的指南。