libreria jtls funciones ejemplos curso java jsp jstl

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?


También están las etiquetas de funciones, un poco más flexibles:

<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> <c:if test="${fn:length(list) > 0}">

Y here''s la documentación here''s la etiqueta.


empty es un operador.

<c:if test="${empty myObject.featuresList}">