Saya telah mencoba untuk mengevaluasi apakah daftar array ini kosong atau tidak tetapi tidak satupun dari ini yang dikompilasi:
<c:if test="${myObject.featuresList.size == 0 }">
<c:if test="${myObject.featuresList.length == 0 }">
<c:if test="${myObject.featuresList.size() == 0 }">
<c:if test="${myObject.featuresList.length() == 0 }">
<c:if test="${myObject.featuresList.empty}">
<c:if test="${myObject.featuresList.empty()}">
<c:if test="${myObject.featuresList.isEmpty}">
Bagaimana cara mengevaluasi jika ArrayList kosong?
Ada juga tag fungsi, sedikit lebih fleksibel:
Dan inilah dokumentasi tagnya.
sumber