如何将嵌套的List对象绑定到JSP表单?

时间:2018-03-05 17:20:07

标签: java spring jpa data-binding

Hello其他程序员,

我正在编写一个Spring MVC应用程序,供学生使用多项选择题进行在线评估。管理员应该能够创建评估,因此我创建了这个对象结构:

@Entity
@Table(name = "assessment")
public class Assessment {
    private List<Question> questions;
    // getter and setter
}


@Entity
@Table(name = "question")
public class Question {
    private String questionText;
    private List<Answer> answers;
    // getters and setters
}


@Entity
@Table(name = "answer")
public class Answer {
    private String answerText;
    private boolean isCorrect;
    // getters and setters
}

现在,我在管理页面上使用JSP表单:

控制器

@RequestMapping(value = "/add/assessment", method = RequestMethod.GET)
public String addAssessments(Model model) {
    model.addAttribute("assessmentModel", new Assessment());

    return "admin-assessments-create";
}

JSP表格

<form:form method="POST" modelAttribute="assessmentModel">
    <form:input path="questions[0].questionText" type="text"/> <!-- this is working-->

    <form:radiobutton path="questions[0].answers[0].isCorrect"/> <!-- not working-->
    <form:input path="questions[0].answers[0].answerText"/>

    <button class="btn" type="submit">Submit</button>
</form:form>

当我转到此页面时,我收到以下错误:

org.springframework.beans.NotReadablePropertyException:
    Invalid property 'questions[0].answers[0].isCorrect' of bean class [com.johndoe.model.Question]:
    Bean property 'questions[0].answers[0].isCorrect' is not readable or has an invalid getter method:
    Does the return type of the getter match the parameter type of the setter?

我检查了所有的吸气剂和制定者,但那些都很好。

问题:

如何避免使用NotReadablePropertyException,从而将嵌套的答案列表绑定到我的表单?

1 个答案:

答案 0 :(得分:4)

使用

<form:radiobutton path="questions[0].answers[0].correct"/>

它会起作用。

为什么呢?对于boolean字段,您必须将get / set范例调整为"is"XYZ()。对于EL表达式,您必须在访问字段当前值的方法前面放置“ is ”,几乎与“get”/“set”相同”