struts2 判断集合为空

 <s:if test="null==user||user.isEmpty()"> 集合为空 </s:if><s:else> 集合不为空 </s:else>

or

<s:if test="null!=user&&!user.isEmpty()"> 集合不为看空 </s:if>

你可能感兴趣的:(struts,user,null)