* 오류 메시지
can not find the tag library descriptor for "http //jakarta.apache.org/taglibs/string-1.1"
분명 관련 모듈도 포함이 되어 있는데,
<%@ taglib uri="http://jakarta.apache.org/taglibs/string-1.1" prefix="str" %>
위 부분의 tag library descriptor 를 찾지 못한다.
이럴 땐 해당 모듈의 taglib.tld 위치를 web.xml 에 직접 기술해준다.
Accepted Solution
위처럼 수정했는데 web.Xml 에서 파싱 오류가 발생하면 web.Xml 의 상단에 선언된 web-app 버전 때문임.
<jsp-config>
<taglib>...</taglib>
</jsp-config>
위 처럼 수정해주면 곧 행복해진다.
* 참고 url
http://shonm.tistory.com/category/eclipse/web.xml%20%EC%97%90%EC%84%9C%20%3Ctaglib%3E%20%EC%98%A4%EB%A5%98
http://blog.daum.net/dooly_zone/7759935
'dev' 카테고리의 다른 글
javascript chart library (0) | 2015.05.19 |
---|---|
루비 시작하기 - 설치 (0) | 2014.10.07 |
파폭 등에서 새로고침 시 기존 페이지의 input 값을 유지하는 경우 해결 방법. (0) | 2013.11.05 |
eclipse 에서 maven 프로젝트 빌드 오류 나는 경우 (0) | 2013.10.17 |
mybatis 3.1.1 과 mybatis-spring-1.1.1 (0) | 2012.11.27 |
by: objects on 2008-12-28 at 01:37:04ID: 23250941
add the taglib declaration to your web.xml
pache.org/taglibs/string-1.1</taglib-uri>t aglib-location>/WEB-INF/string.tld</taglib-location>
<taglib>
<taglib-uri>http://jakarta.a
<
</taglib>
출처 : http://www.experts-exchange.com/Programming/Languages/Java/J2EE/Q_24010957.html