SpringBoot入門


5-4 掲示板へのバリデーション機能の追加

⑤ビュー(new.html)を修正します。

(途中略) <h1>掲示板登録</h1> <form method="post" th:action="@{/create}" th:object="${bbs}"> <ul> <li th:each="error : ${#fields.detailedErrors()}" class="err" th:text= "${error.fieldName} +':'+ ${error.message}" /> </ul> <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" /></td> </tr> (以下略)