'JSP'에 해당되는 글 1

  1. 2009.01.05 :: JSTL 선언 오류 :: 1
::Java Platform::/::JSP:: | Posted by 그냥그냥그 2009. 1. 5. 21:40

:: JSTL 선언 오류 ::



According to TLD or attribute directive in tag file, attribute
items does not accept any expressions
위와 같은 에러가 발생했다면 버전 문제로 
JSTL 1.0 -> http://java.sun.com/jstl/core
JSTL 1.1 -> http://java.sun.com/jsp/jstl/core
 
 
<%@ taglib prefix = "c" uri = "http://java.sun.com/jstl/core" %>

위와 같은 태그선언을 아래와 같이 고쳐주면 된다.


<%@ taglib prefix = "c" uri = "http://java.sun.com/jsp/jstl/core" %>