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?
vide est un opérateur.
<c:if test="${empty myObject.featuresList}">
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.