GET POSTの表示のやり取りのテストができません
Java初心者です。
コントローラーにget postをセットしましたが、コンソールで結果が表示されません。
フォームで入力したIDとPASSWORDをコンソール上に表示させるにはどうしたらいいでしょうか?
@RequestMapping(value = "/profile/save", method = RequestMethod.GET)
public String S161formList(Model model) {
model.addAttribute("S100601formList", new S161formList());
return "S161.html";
}
@RequestMapping(value = "/profile/save", method = RequestMethod.POST)
public String form(@ModelAttribute 161formList 161formList1, Model model1) {
System.out.println(id);
System.out.println(password);
return "S161.html";
}
public class S161formList {
private int id;
private int password;
各setter getter
}
<html>
<head></head>
<body>
<form th:action="@{/profile/save}" method="post" th:object="${161formList}">
<table class="table table-bordered table-condensed">
<colgroup>
<col style="width: 15%">
<col style="width: 30%">
<col style="width: 15%">
<col style="width: 30%">
</colgroup>
<tbody>
<tr>
<th>ログインID<span class=""> *</span></th>
<td><input type="text" class="input-sm" value="" name="id" required></td>
</tr>
<tr>
<th>パスワード</th>
<td><input type="password" class="" name="password"></td>
</tr></tbody>
</table></form>
</body>
</html>