@modelAttribute を使用してモデル属性をコントローラーに送信しようとしています
私のモデルには多くの属性 (文字列、整数など) が含まれています。そのうちの 1 つは、select タグから取得したいオブジェクトです。問題は、コントローラーにモデル属性を渡すと、オブジェクトが Null になることです
JSP:
<form:form method="post" action="saveUorg.html" modelAttribute="uorg" >
<table >
<tr>
<th>Nom</th>
<th>Nom abregé</th>
<th>timbre</th>
<th>Date début effet</th>
<th>Date fin effet</th>
</tr>
<tr>
<td><input path="nom" name="nom"/></td>
<td><input path="nomAbrege" name="nomAbrege"/></td>
<td><input path="timbre" name="timbre"/></td>
<td><input type="date" path="dateDebutEffet" name="dateDebutEffet"/></td>
<td><input type="date" path="dateFinEffet" name="dateFinEffet"/></td>
</tr>
</table>
<table >
<tr>
<th>email</th>
<th>Unité père</th>
</tr>
<tr>
<td><input path="email" name="email"/></td>
<td><select path="refUniteOrganisParent">
<option value="-"> --- </option>
<c:forEach items="${listeuos}" var="uorgg" varStatus="status" >
<option value="${uorgg}">${uorgg} </option>
</c:forEach>
</select></td>
</tr>
これは私のコントローラーです
@RequestMapping(value ="/saveUorg", method = RequestMethod.POST)
public ModelAndView saveUorg(@ModelAttribute("uorg") UorgVO uorg,BindingResult result){
System.out.println("RefUniteOrganisParent:" +uorg.getRefUniteOrganisParent());
return new ModelAndView("view","uorg",uorg);
}
refUniteOragnisParent は null オブジェクトです。コンテンツの結果を uorg.refUniteOrganisParent のコントローラーで出力すると、結果は null になります。助けてくれてありがとう。