我有一个形式变量ftDtClo,定义形式如下:
public String getFtDtClo () {
String dateStr = "";
if(this.getCse().getDtClo()!=null) {
dStr = DtUtil.formatDate(this.getCse().getgetDtClo(), DtUtil.FORMAT_MM_DD_YYYY_KK_MM_SS);
}
return dateStr;
}
在JSP中,代码如下所示:
<c:choose>
<c:when test="${not empty cseList.ftDtClo}">
<c:out value="${cseList.ftDtClo}"/>
</c:when>
</c:choose>
但是我得到了例外
wrapped exception:
javax.servlet.jsp.JspException: javax.servlet.jsp.JspException: An error occurred while evaluating custom action attribute "test" with value "${not empty cseList.ftDtClo}": An error occurred while getting property "ftDtClo" from an instance of class abc.cseDetailLists (java.lang.NullPointerException)
at org.apache.taglibs.standard.tag.common.core.ImportSupport.acquireString(ImportSupport.java:306)
at org.apache.taglibs.standard.tag.common.core.ImportSupport.doEndTag(ImportSupport.java:161)
我假设不为空将照顾空检查。我想念什么吗?任何I / P的高度赞赏。
最佳答案
<c:choose>
<c:if test=${cseList != null}>
<c:when test="${not empty cseList.ftDtClo}">
<c:out value="${cseList.ftDtClo}"/>
</c:when>
</c:if>
</c:choose>