我使用的是Spring框架,db是Oracle。我在db中有一个数据,如734982384.3434.3523
,但在检索JSP页面的前端,在某些情况下,同样的数据将变为******.3523
。无法找到发生这种情况的案例。
编辑:
将infoList
设置为模型属性,并在JSP中设置值如下:
<td><c:choose><c:when test = "${not empty infoList.rcno }"><c:out value="${infoList.rcno}"/></c:when><c:otherwise>---</c:otherwise></c:choose></td>