SpringMVC从Controller到Jsp传递List对象报错问题

解决方法:

把List封装到Map里面,比如

Map<String, Object> model = new HashMap<String, Object>();

model.put('list',list)   //list是个包含患者信息对象Arraylist集合类 

return new ModelAndView("query",model);

在jsp页面中使用jstl标签循环取出每个值

<c:forEach items="${list}" var="in">

       患者ID: ${in.patientId}

       标题: ${in.title}

</c:forEach>

你可能感兴趣的:(SpringMVC从Controller到Jsp传递List对象报错问题)