'jstl'에 해당되는 글 1건

  1. 2009.12.11 [JSTL]According to TLD or attribute directive in tag file 2

아파치 톰켓 컴파일중 오류 메시지...



According to TLD or attribute directive in tag file, attribute items does not accept any expressions



이는 JSP파일의 JSTL 선언부와 설치한 라이브러리 jstl.jar와의 버전차이에 의한 에러 메시지다.

해결법은 문서내 선언부를 버전에 맞게 변경시켜주면 된다.

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


JSTL 1.1
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>



..
Posted by finewoo
,