我有一份行动清单。当我看到运行中的值时,它会显示所有值,但是当我尝试在JSP上打印值时,所有值都会增加,但是一个值不会出现。 JSP代码是: -
<s:iterator value="actionForm.listHD" var="varListHD" status="userlistStatus">
<tr>
<td><s:property value="%{#varListHD.group}"/></td>
<td><s:property value="%{#varListHD.server}"/></td>
<td><s:property value="%{#varListHD.serverId}"/></td>
<td><s:property value="%{#varlistHD.smartMonitoring}"/>
<s:if test="%{#varListHD.smartMonitoring} == 0">
<s:property value="getText('text.disable')" />
</s:if> <s:if test="%{#varListHD.smartMonitoring}==1">
<s:property value="getText('text.enable')" />
</s:if></td>
</tr>
</s:iterator>
在此,
<td><s:property value="%{#varListHD.group}"/></td>
<td><s:property value="%{#varListHD.server}"/></td>
<td><s:property value="%{#varListHD.serverId}"/></td>
显示数据但是: -
<td><s:property value="%{#varlistHD.smartMonitoring}"/></td>
没有按&#39;吨。我已经检查了它的作用值。 变量是String,setter getter是公共的。