【FAQ】SpiningMVC集合パラメータ(Could not instantiate bean class[java.util.List]を実現する。)
3136 ワード
ニーズは、ボリュームの追加やListの変更が要求されます。Spring MVCでは、以下のコードの書き方はサポートされていません。
Formを追加します
@RequestMapping(value = "/update", method = RequestMethod.POST)
public String update(List<ProductCollocation> productCollocations ,HttpServletRequest request, RedirectAttributes redirectAttributes) {
for (ProductCollocation productCollocation : productCollocations) {
productCollocation.setModifyDate(DateUtil.getDate());
productCollocationService.update(productCollocation, "create_date","product","collocation","description");
}
addFlashMessage(redirectAttributes, SUCCESS_MESSAGE);
return "redirect:list.jhtml";
}
で異常が発生します。nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [java.util.List]:
実際にも非常にeasuryなのかどうか、Spring MVCはFormフォームオブジェクトのマッピングをサポートし、get setを使用してオブジェクトを塗りつぶす必要があります。Formを追加します
public class ProductCollocationForm {
List<ProductCollocation> productCollocations;
/**
* @return the productCollocations
*/
public List<ProductCollocation> getProductCollocations() {
return productCollocations;
}
/**
* @param productCollocations the productCollocations to set
*/
public void setProductCollocations(List<ProductCollocation> productCollocations) {
this.productCollocations = productCollocations;
}
}
Formを使ってオブジェクトをセットします。 @RequestMapping(value = "/update", method = RequestMethod.POST)
public String update(ProductCollocationForm productCollocationForm ,HttpServletRequest request, RedirectAttributes redirectAttributes) {
for (ProductCollocation productCollocation : productCollocationForm.getProductCollocations()) {
productCollocation.setModifyDate(DateUtil.getDate());
productCollocationService.update(productCollocation, "create_date","product","collocation","description");
}
addFlashMessage(redirectAttributes, SUCCESS_MESSAGE);
return "redirect:list.jhtml";
}
デスクでインデックスを使ってバックグラウンドオブジェクトに値を設定できます。<td>
<input type="text" name="productCollocations[${productCollocation_index}].displayName" class="text" maxlength="200" style="width:100px" value="${productCollocation.displayName}"/>
<input type="hidden" name="productCollocations[${productCollocation_index}].id" class="text" maxlength="200" value="${productCollocation.id}"/>
</td>