Exception: JSP 가 foreach 로 list 를 교체 하 는 중 오류 가 발생 했 습 니 다. 페이지 분석 이 잘못 되 었 습 니 다.

HTTP ERROR 500
Problem accessing /mvc/student/getList. Reason: 

    The class 'java.lang.String' does not have the property 'studentId'.

Caused by:
javax.el.PropertyNotFoundException: The class 'java.lang.String' does not have the property 'studentId'.
	at javax.el.BeanELResolver.getBeanProperty(BeanELResolver.java:579)


 Student Controller 코드 는 다음 과 같 습 니 다.
@RequestMapping("getList")
	public ModelAndView getList() {
		ModelAndView mav = new ModelAndView();
		List<Student> list = studentService.getList(null);
		mav.addObject("list",list);
		mav.setViewName("studentList");
		return mav;
	}

 studentList. jsp 코드 는 다음 과 같 습 니 다.
<c:forEach var="st" items="${list} "> <tr>
	<td>${st.studentId}</td>
	<td>${st.name}</td>
	<td>${st.sex}</td>
	<td>${st.home}</td>
	<td>  </td>
</tr>	
</c:forEach>

문 제 는 foreach 태그 의 items 에 있 습 니 다. {list} 이후 빈 칸 이 하나 더 생 겼 습 니 다.손 이 싸다 고 생각 하고 빈 칸 을 하나 더 두 드 렸 다.

좋은 웹페이지 즐겨찾기