0

我在 JSP 上有以下内容

<form:form method="post" action="${submit}" id="id" commandName="object"> <form:checkboxes path="ratings" items="${ratingsList}">

这里, ratingList 是在 Controller 中设置的。
model.put("object",object); model.put("ratingsList",ratingsList);

加载时我看到页面上的所有复选框。我也可以将其保存在列表中的评级中。但是,当我回到这个页面时,我希望在页面上选择保存在“评级”列表中的评级。

我收到以下错误。

Caused by: org.springframework.core.convert.ConversionFailedException: Unable to convert value "[0]" from type 'java.util.List' to type 'java.lang.String'; nested exception is java.lang.IllegalArgumentException:

4

0 回答 0