Please Enable JavaScript!
Gon[ Enable JavaScript ]

JSTL cannot be resolved error

자바(JAVA)
반응형
org.apache.jasper.JasperException: This absolute uri (http://java.sun.com/jsp/jstl/core)
cannot be resolved in either web.xml or the jar files deployed with this application


JSTL 을 제대로 연결하지 못하는거 같아 여러 방면으로 찾아보았다.
소스 상에는 문제가 없는데 문제가 생기는건 jar 문제 같았다.
jstl.jar 를 해석하는 standard-1.0.6 을 뜯어서 보니 META-INF 안에 .tld 파일의 URL이
jsp 가 빠진 주소이다 . 하지만 사이트에서는
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 다음과 같이 쓰기 때문에
맞지 않았던것이다.
사용자 삽입 이미지
그래서 아래 주소로 가서 jstl.jar 와 standard.jar 를 새로 받아 넣었더니 제대로 되는 것이다.
http://jakarta.apache.org/site/downloads/downloads_taglibs-standard.cgi
1.1.2 .zip 파일을 받는다.

다음의 주소는 JSTL  지침서 이다. 시간날때 참조하자.
http://java.sun.com/developer/technicalArticles/javaserverpages/faster/
반응형
Posted by 녹두장군1
,