5-4 掲示板へのバリデーション機能の追加
⑧次にメッセージを各入力フィールドに表示するようにnew.htmlを修正してみましょう。
<h1>掲示板登録</h1> <form method="post" th:action="@{/create}" th:object="${bbs}"> <input type="hidden" name="id" th:value="*{id}"> <table> <tr> <th class="col_name">タイトル</th> <td class="col_data"> <input type="text" name="title" th:value="*{title}" size="40" maxlength= "40" /> <div th:if="${#fields.hasErrors('title')}" th:errors="*{title}" th:errorclass="err" ></div> </td> </tr> <tr> <th>内容</th> <td> <textarea name="note" rows="10" cols="60" th:utext="*{note}"> </textarea> <div th:if="${#fields.hasErrors('note')}" th:errors="*{note}" th:errorclass="err" ></div> </td> </tr> (以下略)