<div th:if="${tblUserList != null}">
--content--
</div>
Le code thymeleaf ci-dessus ne fonctionne pas, tblUserList étant une liste. Donc, je veux vérifier si la liste est vide au lieu de vérifier son null. Comment faire ça?
Vous pouvez faire comme suit:
<div th:if="${not #lists.isEmpty(tblUserList)}">
--content--
</div>
Avec Thymeleaf 3.x.x vous pouvez valider une liste plus élégante:
<div th:if="${tblUserList!=null and !tblUserList.empty}"></div>
ou
<div th:if="${tblUserList!=null and !tblUserList.isEmpty()}"></div>