반응형
SMALL
Tomcat5.5에서는 JSTL 1.1 버젼을 사용해야 합니다.
jstl.jar와 standard.jar를 bli 폴더에 넣고
스프링 web.xml 에서
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
위처럼 되어 있는 설정을 아래와 같이 바꾸어 주면 사용 tomcat 5.5에서도 jstl을 사용 할 수 있습니다
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
반응형
'Web Programing! > JAVA / JSP' 카테고리의 다른 글
[JSP] 이미지파일 다운로드 구현하기 (0) | 2011.09.22 |
---|---|
[JSP] 파일경로, 디렉토리, 파일명 추출하기 (0) | 2011.09.21 |
[JSP] 다중업로드/다운로드 (0) | 2011.09.20 |
[JSP] excel파일 읽어오기 (0) | 2011.09.19 |
[JAVA] System.getProperty (0) | 2011.09.18 |
[JSP] response 객체에 HTML, javascript 코드 넣기 (0) | 2011.09.18 |
[JSP] RSS 만들기 - 초보 (0) | 2011.09.17 |