Bu dizi listesinin boş olup olmadığını değerlendirmeye çalışıyorum ama bunların hiçbiri derlemedi bile:
<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}">
Bir ArrayList'in boş olup olmadığını nasıl değerlendirebilirim?