<div th:if="${tblUserList != null}">
--content--
</div>
上記のthymeleafコードは機能していません。tblUserListはリストです。そのため、nullをチェックするのではなく、リストが空かどうかをチェックしたいと思います。どうやってするか?
次のようにできます。
<div th:if="${not #lists.isEmpty(tblUserList)}">
--content--
</div>
Thymeleaf 3.x.xを使用すると、リストをよりエレガントに検証できます。
<div th:if="${tblUserList!=null and !tblUserList.empty}"></div>
または
<div th:if="${tblUserList!=null and !tblUserList.isEmpty()}"></div>