web-dev-qa-db-fra.com

Évaluer si la liste est vide JSTL

J'ai essayé d'évaluer si cette liste de tableaux est vide ou non, mais aucun d'entre eux n'a même été compilé:

<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}">  

Comment puis-je évaluer si une ArrayList est vide?

118
OscarRyz

vide est un opérateur.

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

Il y a aussi les balises de fonction, un peu plus flexibles:

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

Et voici la documentation de la balise.

66
Steve B.