前提・実現したいこと
pageWrapperについてnull判定を実装させたい
発生している問題・エラーメッセージ
org.attoparser.ParseException: Exception evaluating SpringEL expression: "form.pageWrapper != null" (template: "common/pagination"
該当のソースコード
html
1<tbody th:if="${accountLoginHistoryListForm.pageWrapper != null}"> 2 <tr th:each="line, stat : ${accountLoginHistoryListForm.pageWrapper.page}"> 3 <td style="text-align: left" 4 th:text="${#temporals.format(line.loginDatetime,'yyyy/MM/dd HH:mm:ss')}"></td> 5 <td style="text-align: left" th:text="${line.ip}"></td> 6 <td style="text-align: left" th:text="${line.userAgent}"></td> 7 <td style="text-align: left" th:text="${line.loginResult}"></td> 8 </tr> 9 </tbody>
試したこと
null判定をせずに表示しようとしたのですがエラーが出てしまいました。
補足情報(FW/ツールのバージョンなど)
pageWrapperがnull判定出来ておらず、エラーが出てしまっているのは理解できたのですがどの部分でそれを実装すれば良いのかわからない状態です。
あなたの回答
tips
プレビュー