728x90
오류페이지에서 추천해준 JSP에 가보니 노란밑줄,, 읽어보니 "items" does not support runtime expressions 라고 뜬다....
JSTL 문제였다. 태그라이브러리에 /jsp 를 추가해줘야 한다.
- 수정전
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
- 수정후
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>