-
从
Apache.org
下载最新版
jakarta-taglibs-standard-current.tar.gz
- 解压缩下载的文件。
-
将
jakarta-taglibs-standard-1.1.2/tld/c.tld
拷贝到WEB/INF/tlds
目录
-
将
jakarta-taglibs-standard-1.1.2/lib
中的所有JAR文件拷贝到WEB-INF/lib
目录(jstl.jar和standard.jar)
-
将以下显示的条目添加到
WEB-INF/web.xml
部署描述符中
<!---->
<
taglib
>
< taglib-uri > http://java.sun.com/jsp/jstl/core </ taglib-uri >
< taglib-location > /WEB-INF/tlds/c.tld </ taglib-location >
</ taglib >
< taglib-uri > http://java.sun.com/jsp/jstl/core </ taglib-uri >
< taglib-location > /WEB-INF/tlds/c.tld </ taglib-location >
</ taglib >
6. 在 JSP 页面添加了JSTL taglib之后,可以使用核心库中的任何标记,只需把标记的前缀改为
c
<!---->
<%
@taglib uri
=
"
http://java.sun.com/jsp/jstl/core
"
prefix
=
"
c
"
%>
<
c:
if
test
=
"
${param.sayHello}
"
>
<!--
Let's welcome the user ${param.name}
-->
Hello ${param.name}
!
</
c:
if
>
<
c:out value
=
"
Hello World
"
/>