spring에서 view로 jsp 파일을 사용하고 jstl을 사용할때 아래와 같은 에러가 발생하였다.
According to TLD or attribute directive in tag file, attribute items does not accept any expressions
첫 페이지에서만 에러가 발생하고 새로고침을 하게 되면 정상적으로 보였다.
<%@ taglib prefix = "c" uri = "http://java.sun.com/jstl/core"
%>
로 설정이 되어 있었던게 문제였고
<%@ taglib prefix = "c" uri = "http://java.sun.com/jsp/jstl/core" %>
로 수정하니 문제없이 보였다
1.0을 1.1로 수정해서 문제해결.
http://happybruce.tistory.com/185?srchid=BR1http%3A%2F%2Fhappybruce.tistory.com%2F185