java - jtls - Evaluar si la lista está vacía JSTL
jtls java (2)
He estado tratando de evaluar si esta lista de arreglos está vacía o no, pero ninguno de ellos se ha compilado:
<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}">
¿Cómo puedo evaluar si un ArrayList está vacío?