javax.el.PropertyNotFoundException:



我正在研究Spring。我无法在 JSP 中显示列表项。它说:Property not found on type java.lang.String。我有一个POJO类Student

public class Student {
    private Integer age;
    private String name;
    private Integer id;
    public Integer getAge() {
        return age;
    }
    public void setAge(Integer age) {
        this.age = age;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getName() {
        return name;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public Integer getId() {
        return id;
    }      
}

在我的控制器类中,我获取学生列表并将其分配给列表,并将列表添加到模型属性中。具体如下。

@RequestMapping("/getstuds")
public String getstudents(@ModelAttribute Student student, ModelMap model){
    StudentDAO studentDAO = (StudentJDBCTemplate)applicationContext.getBean("studentJDBCTemplate");
    List<Student> students = studentDAO.listStudents();
    model.addAttribute("studlist",students);
    System.out.println(students.iterator().next().getName());
    return "showstuds";     
}

秀场.jsp

<table>
    <c:forEach var="stud" items="${studlist} }">
        <tr><td>${stud.Name}</td></tr>
    </c:forEach>
</table>

我得到以下异常:

javax.el.PropertyNotFoundException: 在 com.spring.mvc.Student 类型上找不到属性"Name"

你的变量名name而不是Name

<tr><td>${stud.name}</td></tr>

而不是

<tr><td>${stud.Name}</td></tr>

并取下支架

items="${studlist}" 

而不是

items="${studlist} }"

相关内容

  • 没有找到相关文章

最新更新