Spring MVC,捕获@ModelAttribute等对象列表

标签 spring model-view-controller spring-mvc jstl

我有 Test 类,并且有 jsp 页面,其中包含绑定(bind)到测试对象列表的输入。我想从 jsp 中取回测试列表并编辑信息。 我的测试类是:

@Entity
@Table(name = "[NewMVC].[dbo].[Tests]")
public class Test {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name = "id")
    private int id; 

    @Column(name = "testQuestion")
    private String testQuestion;

    @Column(name = "optionOne")
    private String optionOne;

    @Column(name = "optionTwo")
    private String optionTwo;

    @Column(name = "optionThree")
    private String optionThree;

    @Column(name = "subjectType")
    private int subjectType;

    @Column(name = "correctOptionNumber")
    private int correctOptionNumber; 
        //gets, sets...

我有一个 jsp,我可以在其中编辑带有测试的列表:

   <form:form action="saveTestsEdits" method="POST" modelAttribute = "testWrapper">

    <c:forEach items="${testWrapper.testList}" var="test" varStatus="i">
    <h2> Test number ${i.index+1} </h2>
    <form:hidden value="${test.id}" path = "testList[${i.index}].id" />
    <table>
        <tr><td>Test Question:</td> <td><form:input path = "testList[${i.index}].testQuestion" value = "${test.testQuestion}"/> </td></tr>
        <tr><td>Option one: </td> <td><form:input path = "testList[${i.index}].optionOne" value= "${test.optionOne}"/> </td>
        <td>        
        <c:choose>
        <c:when test="${test.correctOptionNumber == 1}"> <form:radiobutton path = "testList[${i.index}].correctOptionNumber" value = "1" checked = "checked"/> </c:when>
        <c:otherwise><form:radiobutton path = "testList[${i.index}].correctOptionNumber" value = "1"/> </c:otherwise> 
        </c:choose> 
        </td>
        </tr>

        <tr><td>Option two: </td> <td><form:input path = "testList[${i.index}].optionTwo" value= "${test.optionTwo}"/> </td>
        <td>        
        <c:choose>
        <c:when test="${test.correctOptionNumber == 2}"> <form:radiobutton path = "testList[${i.index}].correctOptionNumber" value = "2" checked = "checked"/> </c:when>
        <c:otherwise><form:radiobutton path = "testList[${i.index}].correctOptionNumber" value = "2"/> </c:otherwise> 
        </c:choose> 
        </td>
        </tr>


        <tr><td>Option three: </td> <td><form:input path = "testList[${i.index}].optionThree" value= "${test.optionThree}"/> </td>
        <td>        
        <c:choose>
        <c:when test="${test.correctOptionNumber == 3}"> <form:radiobutton path = "testList[${i.index}].correctOptionNumber" value = "3" checked = "checked"/> </c:when>
        <c:otherwise><form:radiobutton path = "testList[${i.index}].correctOptionNumber" value = "3"/> </c:otherwise> 
        </c:choose> 
        </td>

        </tr>
        <tr><th>Subject type:</th></tr>
        <tr><td>Georaphy: </td> 
        <td>        
        <c:choose>
        <c:when test="${test.subjectType == 3}"> <form:radiobutton path = "testList[${i.index}].subjectType" value = "3" checked = "checked"/> </c:when>
        <c:otherwise><form:radiobutton path = "testList[${i.index}].subjectType" value = "3"/></c:otherwise> 
        </c:choose> 
        </td>
        </tr>

        <tr><td>Mathematics: </td> 
        <td>        
        <c:choose>
        <c:when test="${test.subjectType == 4}"><form:radiobutton path = "testList[${i.index}].subjectType" value = "4" checked = "checked"/> </c:when>
        <c:otherwise><form:radiobutton path = "testList[${i.index}].subjectType" value = "4"/></c:otherwise> 
        </c:choose> 
        </td>
        </tr>

        <tr><td>History: </td> 
        <td>        
        <c:choose>
        <c:when test="${test.subjectType == 5}"><form:radiobutton path = "testList[${i.index}].subjectType" value = "5" checked = "checked"/> </c:when>
        <c:otherwise><form:radiobutton path = "testList[${i.index}].subjectType" value = "5"/></c:otherwise> 
        </c:choose> 
        </td>
        </tr>

    </table>
    <br>        
    </c:forEach>
    <input type="submit" value="Submit" />
</form:form>
</body>
</html>

实际上我没有清楚地发送到页面列表,但我有一个名为 TestWrapper 的特殊类,如下所示:

public class TestWrapper {

    private List<Test> testList = null;

    public TestWrapper(List<Test> testList) {

        this.testList = testList;
    }

    public void setTestList(List<Test> testList) {

        this.testList = testList;
    }

    public List<Test> getTestList() {

        return testList;
    }

}

我尝试使用:

@RequestMapping(value="/saveTestsEdits", method = RequestMethod.POST)
     public String register(@ModelAttribute("testWrapper")TestWrapper testWrapper , HttpServletRequest request)

但这给了我一个异常(exception):

SEVERE: Servlet.service() for servlet [appServlet] in context with path [/mvc] threw exception [Request processing failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.andrew.models.TestWrapper]: No default constructor found; nested exception is java.lang.NoSuchMethodException: com.andrew.models.TestWrapper.<init>()] with root cause
java.lang.NoSuchMethodException: com.andrew.models.TestWrapper.<init>()

非常感谢!

最佳答案

异常java.lang.NoSuchMethodException: xxx.<init>()当 JVM 无法实例化 xxx 类的对象时,会抛出该异常。在这种情况下,Spring 无法实例化 TestWrapper 类。

您有一个列表参数构造函数,但没有默认的构造函数。添加如下所示:

public class TestWrapper {

    public TestWrapper() {
    }
}

关于Spring MVC,捕获@ModelAttribute等对象列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13902872/

相关文章:

spring - 为什么在 Spring 中使用 Url Rewrite Filter?

Spring Social 记住我登录

java - 修改 Spring @RolesAllowed 的行为

c# - 在 javascript 函数中使用 Razor 代码

javascript - Sencha Touch 和 ExtJS 配置文件适用于一个 Web 项目/虚拟主机中的桌面和移动设备?

java - 如何在 Spring MVC 中定义和获取基于语言环境的消息?

java.lang.LinkageError : loader constraint violation for Spring MVC and Thymeleaf

spring - 如何使用 Spring Boot 和 @FeignClient 发送 Bearer 授权 token

java - spring jdbc连接远程mysql失败,而localhost正常

Spring MVC FlashMap 和 RedirectAttributes 请求映射