JSTL的学习之一:Eclipse+Tomcat环境下配置JSTL

时间:2022-10-26 15:59:35

JSTL--JSP Standard Tag Library(JSP标准标签库),由JCP(Java Community Process)制订,它是一组形如HTML的标签,让入门者无须Java学习也可编写动态WEB页

前提么,你要下载JSTL所需的JAR包,并在eclipse中完成配置,才可以使用

1、进官网下载,网址:http://archive.apache.org/dist/jakarta/taglibs/standard/binaries/

JSTL的学习之一:Eclipse+Tomcat环境下配置JSTL


2、解压后将jstl.jar和standard.jar两个包拖到你新建的Dynamic WEB工程的lib文件夹中

JSTL的学习之一:Eclipse+Tomcat环境下配置JSTL


3、新建一个web.xml文件,进行如下taglib的配置,具体代码如下:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0"
metadata-complete="true">

<jsp-config>

<taglib>
<taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>
<taglib-location>/WEB-INF/fmt.tld</taglib-location>
</taglib>

<taglib>
<taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
<taglib-location>/WEB-INF/c.tld</taglib-location>
</taglib>

<taglib>
<taglib-uri>http://java.sun.com/jstl/fn</taglib-uri>
<taglib-location>/WEB-INF/fn.tld</taglib-location>
</taglib>

<taglib>
<taglib-uri>http://java.sun.com/jstl/perTag</taglib-uri>
<taglib-location>/WEB-INF/permittedTaglibs.tld</taglib-location>
</taglib>

<taglib>
<taglib-uri>http://java.sun.com/jstl/sql</taglib-uri>
<taglib-location>/WEB-INF/sql.tld</taglib-location>
</taglib>

<taglib>
<taglib-uri>http://java.sun.com/jstl/script</taglib-uri>
<taglib-location>/WEB-INF/scriptfree.tld</taglib-location>
</taglib>

<taglib>
<taglib-uri>http://java.sun.com/jstl/x</taglib-uri>
<taglib-location>/WEB-INF/x.tld</taglib-location>
</taglib>

</jsp-config>
</web-app>

笔者在这里出现了一些问题,就是<jsp-config>...</jsp-config>这一段没加,导致后面运行时提示:cvc-complex-type.2.4.a: Invalid content was found starting with element 'taglib'错误,具体解决办法参考了他人的一篇博客,给个链接:http://blog.csdn.net/lopper/article/details/4836252,比较详细的说明了解决办法


4、新建一个c_out.jsp文件,具体代码如下:

<%@ page language="java" contentType="text/html; charset=GBK"
pageEncoding="GBK"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>JSTL</title>
</head>
<body>
<c:out value="无标签主体的输出..."/><br><br>
<!-- value值为NULL时,默认值 -->
<c:out value="${name}">value值为NULL时,输出我</c:out><br><br>
<c:out value="<hr>原样输出HTML标签<hr>" escapeXml="true"/><br><br>
<c:out value="<hr>转换HTML标签并输出<hr>" escapeXml="false"/>
</body>
</html>

最后做个测试吧~~

JSTL的学习之一:Eclipse+Tomcat环境下配置JSTL


写在最后,注意到c_out.jsp文件仍然有感叹号么,编译虽然通过,但本着偏执的本性,笔者遍访各类解决方法后,发现:你把jstl和standard两个JAR包拖到TOMCAT的lib目录下,就可以了~~

JSTL的学习之一:Eclipse+Tomcat环境下配置JSTL

上张修改后的图,是不是很清爽?

JSTL的学习之一:Eclipse+Tomcat环境下配置JSTL


参考书目:《JSP基础与案例开发详解》,清华大学出版社

手把手教你在Eclipse+Tomcat环境下使用JSTL,andycpp的CSDN博客

cvc-complex-type.2.4.a: Invalid content was found starting with element 'taglib'错误,lopper的CSDN博客