반응형
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/
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/
반응형
'자바(JAVA)' 카테고리의 다른 글
velocity 문법 간단 정리 (0) | 2008.08.09 |
---|---|
테이블 컴퍼지트에서 체크박스넣기 (0) | 2008.08.07 |
JAVA System 설정값들 모두 가져오기 (0) | 2008.08.04 |
hibernate antlr/ANTLRException 에러 (0) | 2008.08.03 |
제네릭(generic)을 통해 Java Collections 구현 (0) | 2008.08.02 |
smtp 서버이용 메일보내기 (0) | 2008.07.29 |
Hibernate 입력관련 에러 (0) | 2008.07.24 |
spring 과 hibernate 연결 (0) | 2008.07.20 |