# JSP标准标签库(JSTL)
JSP标准标签库(JSTL)是一个JSP标签集合,它封装了JSP应用的通用核心功能。
JSTL支持通用的、结构化的任务,比如迭代,条件判断,XML文档操作,国际化标签,SQL标签。 除了这些,它还提供了一个框架来使用集成JSTL的自定义标签。
根据JSTL标签所提供的功能,可以将其分为5个类别。
* **核心标签**
* **格式化标签**
* **SQL 标签**
* **XML 标签**
* **JSTL 函数**
* * *
## JSTL 库安装
Apache Tomcat安装JSTL 库步骤如下:
从Apache的标准标签库中下载的二进包(jakarta-taglibs-standard-current.zip)。
* 官方下载地址:[http://archive.apache.org/dist/jakarta/taglibs/standard/binaries/](http://archive.apache.org/dist/jakarta/taglibs/standard/binaries/)
* 本站下载地址:[jakarta-taglibs-standard-1.1.2.zip](http://static.runoob.com/download/jakarta-taglibs-standard-1.1.2.tar.gz)
下载**jakarta-taglibs-standard-1.1.2.zip**包并解压,将**jakarta-taglibs-standard-1.1.2/lib/**下的两个 jar 文件:**standard.jar**和**jstl.jar**文件拷贝到**/WEB-INF/lib/**下。
将 tld 下的需要引入的 tld 文件复制到 WEB-INF 目录下。
接下来我们在 web.xml 文件中添加以下配置:
~~~
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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">
<jsp-config>
<taglib>
<taglib-uri>http://java.sun.com/jsp/jstl/fmt</taglib-uri>
<taglib-location>/WEB-INF/fmt.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://java.sun.com/jsp/jstl/fmt-rt</taglib-uri>
<taglib-location>/WEB-INF/fmt-rt.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>
<taglib-location>/WEB-INF/c.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://java.sun.com/jsp/jstl/core-rt</taglib-uri>
<taglib-location>/WEB-INF/c-rt.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://java.sun.com/jsp/jstl/sql</taglib-uri>
<taglib-location>/WEB-INF/sql.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://java.sun.com/jsp/jstl/sql-rt</taglib-uri>
<taglib-location>/WEB-INF/sql-rt.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://java.sun.com/jsp/jstl/x</taglib-uri>
<taglib-location>/WEB-INF/x.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://java.sun.com/jsp/jstl/x-rt</taglib-uri>
<taglib-location>/WEB-INF/x-rt.tld</taglib-location>
</taglib>
</jsp-config>
</web-app>
~~~
使用任何库,你必须在每个 JSP 文件中的头部包含标签。
* * *
## 核心标签
核心标签是最常用的 JSTL标签。引用核心标签库的语法如下:
~~~
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
~~~
| 标签 | 描述 |
| --- | --- |
| [](https://www.runoob.com/jsp/jstl-core-out-tag.html) | 用于在JSP中显示数据,就像 |
| [](https://www.runoob.com/jsp/jstl-core-set-tag.html) | 用于保存数据 |
| [](https://www.runoob.com/jsp/jstl-core-remove-tag.html) | 用于删除数据 |
| [](https://www.runoob.com/jsp/jstl-core-catch-tag.html) | 用来处理产生错误的异常状况,并且将错误信息储存起来 |
| [](https://www.runoob.com/jsp/jstl-core-if-tag.html) | 与我们在一般程序中用的if一样 |
| [](https://www.runoob.com/jsp/jstl-core-choose-tag.html) | 本身只当做和的父标签 |
| [](https://www.runoob.com/jsp/jstl-core-choose-tag.html) | 的子标签,用来判断条件是否成立 |
| [](https://www.runoob.com/jsp/jstl-core-choose-tag.html) | 的子标签,接在标签后,当标签判断为false时被执行 |
| [](https://www.runoob.com/jsp/jstl-core-import-tag.html) | 检索一个绝对或相对 URL,然后将其内容暴露给页面 |
| [](https://www.runoob.com/jsp/jstl-core-foreach-tag.html) | 基础迭代标签,接受多种集合类型 |
| [](https://www.runoob.com/jsp/jstl-core-foreach-tag.html) | 根据指定的分隔符来分隔内容并迭代输出 |
| [](https://www.runoob.com/jsp/jstl-core-param-tag.html) | 用来给包含或重定向的页面传递参数 |
| [](https://www.runoob.com/jsp/jstl-core-redirect-tag.html) | 重定向至一个新的URL. |
| [](https://www.runoob.com/jsp/jstl-core-url-tag.html) | 使用可选的查询参数来创造一个URL |
* * *
## 格式化标签
JSTL格式化标签用来格式化并输出文本、日期、时间、数字。引用格式化标签库的语法如下:
~~~
<%@ taglib prefix="fmt"
uri="http://java.sun.com/jsp/jstl/fmt" %>
~~~
| 标签 | 描述 |
| --- | --- |
| [](https://www.runoob.com/jsp/jstl-format-formatnumber-tag.html) | 使用指定的格式或精度格式化数字 |
| [](https://www.runoob.com/jsp/jstl-format-parsenumber-tag.html) | 解析一个代表着数字,货币或百分比的字符串 |
| [](https://www.runoob.com/jsp/jstl-format-formatdate-tag.html) | 使用指定的风格或模式格式化日期和时间 |
| [](https://www.runoob.com/jsp/jstl-format-parsedate-tag.html) | 解析一个代表着日期或时间的字符串 |
| [](https://www.runoob.com/jsp/jstl-format-bundle-tag.html) | 绑定资源 |
| [](https://www.runoob.com/jsp/jstl-format-setlocale-tag.html) | 指定地区 |
| [](https://www.runoob.com/jsp/jstl-format-setbundle-tag.html) | 绑定资源 |
| [](https://www.runoob.com/jsp/jstl-format-timezone-tag.html) | 指定时区 |
| [](https://www.runoob.com/jsp/jstl-format-settimezone-tag.html) | 指定时区 |
| [](https://www.runoob.com/jsp/jstl-format-message-tag.html) | 显示资源配置文件信息 |
| [](https://www.runoob.com/jsp/jstl-format-requestencoding-tag.html) | 设置request的字符编码 |
* * *
## SQL标签
JSTL SQL标签库提供了与关系型数据库(Oracle,MySQL,SQL Server等等)进行交互的标签。引用SQL标签库的语法如下:
~~~
<%@ taglib prefix="sql"
uri="http://java.sun.com/jsp/jstl/sql" %>
~~~
| 标签 | 描述 |
| --- | --- |
| [](https://www.runoob.com/jsp/jstl-sql-setdatasource-tag.html) | 指定数据源 |
| [](https://www.runoob.com/jsp/jstl-sql-query-tag.html) | 运行SQL查询语句 |
| [](https://www.runoob.com/jsp/jstl-sql-update-tag.html) | 运行SQL更新语句 |
| [](https://www.runoob.com/jsp/jstl-sql-param-tag.html) | 将SQL语句中的参数设为指定值 |
| [](https://www.runoob.com/jsp/jstl-sql-dateparam-tag.html) | 将SQL语句中的日期参数设为指定的java.util.Date 对象值 |
| [](https://www.runoob.com/jsp/jstl-sql-transaction-tag.html) | 在共享数据库连接中提供嵌套的数据库行为元素,将所有语句以一个事务的形式来运行 |
* * *
## XML 标签
JSTL XML标签库提供了创建和操作XML文档的标签。引用XML标签库的语法如下:
~~~
<%@ taglib prefix="x"
uri="http://java.sun.com/jsp/jstl/xml" %>
~~~
在使用xml标签前,你必须将XML 和 XPath 的相关包拷贝至你的\\lib下:
* **XercesImpl.jar**
下载地址:[http://www.apache.org/dist/xerces/j/](http://www.apache.org/dist/xerces/j/)
* **xalan.jar**
下载地址:[http://xml.apache.org/xalan-j/index.html](http://xml.apache.org/xalan-j/index.html)
| 标签 | 描述 |
| --- | --- |
| [](https://www.runoob.com/jsp/jstl-xml-out-tag.html) | 与,类似,不过只用于XPath表达式 |
| [](https://www.runoob.com/jsp/jstl-xml-parse-tag.html) | 解析 XML 数据 |
| [](https://www.runoob.com/jsp/jstl-xml-set-tag.html) | 设置XPath表达式 |
| [](https://www.runoob.com/jsp/jstl-xml-if-tag.html) | 判断XPath表达式,若为真,则执行本体中的内容,否则跳过本体 |
| [](https://www.runoob.com/jsp/jstl-xml-foreach-tag.html) | 迭代XML文档中的节点 |
| [](https://www.runoob.com/jsp/jstl-xml-choose-tag.html) | 和的父标签 |
| [](https://www.runoob.com/jsp/jstl-xml-choose-tag.html) | 的子标签,用来进行条件判断 |
| [](https://www.runoob.com/jsp/jstl-xml-choose-tag.html) | 的子标签,当判断为false时被执行 |
| [](https://www.runoob.com/jsp/jstl-xml-transform-tag.html) | 将XSL转换应用在XML文档中 |
| [](https://www.runoob.com/jsp/jstl-xml-param-tag.html) | 与共同使用,用于设置XSL样式表 |
* * *
## JSTL函数
JSTL包含一系列标准函数,大部分是通用的字符串处理函数。引用JSTL函数库的语法如下:
~~~
<%@ taglib prefix="fn"
uri="http://java.sun.com/jsp/jstl/functions" %>
~~~
| 函数 | 描述 |
| --- | --- |
| [fn:contains()](https://www.runoob.com/jsp/jstl-function-contains.html) | 测试输入的字符串是否包含指定的子串 |
| [fn:containsIgnoreCase()](https://www.runoob.com/jsp/jstl-function-containsignoreCase.html) | 测试输入的字符串是否包含指定的子串,大小写不敏感 |
| [fn:endsWith()](https://www.runoob.com/jsp/jstl-function-endswith.html) | 测试输入的字符串是否以指定的后缀结尾 |
| [fn:escapeXml()](https://www.runoob.com/jsp/jstl-function-escapexml.html) | 跳过可以作为XML标记的字符 |
| [fn:indexOf()](https://www.runoob.com/jsp/jstl-function-indexof.html) | 返回指定字符串在输入字符串中出现的位置 |
| [fn:join()](https://www.runoob.com/jsp/jstl-function-join.html) | 将数组中的元素合成一个字符串然后输出 |
| [fn:length()](https://www.runoob.com/jsp/jstl-function-length.html) | 返回字符串长度 |
| [fn:replace()](https://www.runoob.com/jsp/jstl-function-replace.html) | 将输入字符串中指定的位置替换为指定的字符串然后返回 |
| [fn:split()](https://www.runoob.com/jsp/jstl-function-split.html) | 将字符串用指定的分隔符分隔然后组成一个子字符串数组并返回 |
| [fn:startsWith()](https://www.runoob.com/jsp/jstl-function-startswith.html) | 测试输入字符串是否以指定的前缀开始 |
| [fn:substring()](https://www.runoob.com/jsp/jstl-function-substring.html) | 返回字符串的子集 |
| [fn:substringAfter()](https://www.runoob.com/jsp/jstl-function-substringafter.html) | 返回字符串在指定子串之后的子集 |
| [fn:substringBefore()](https://www.runoob.com/jsp/jstl-function-substringbefore.html) | 返回字符串在指定子串之前的子集 |
| [fn:toLowerCase()](https://www.runoob.com/jsp/jstl-function-tolowercase.html) | 将字符串中的字符转为小写 |
| [fn:toUpperCase()](https://www.runoob.com/jsp/jstl-function-touppercase.html) | 将字符串中的字符转为大写 |
| [fn:trim()](https://www.runoob.com/jsp/jstl-function-trim.html) | 移除首尾的空白符 |
- Java Web项目开发学习手册
- 一、B/S开发环境搭建
- 1.1 tomcat服务器目录结构及作用
- 1.2 在IDE开发工具上配置tomcat服务器
- 1.3 简单web项目在tomcat服务器上运行的方法
- 1.4 开发工具设置
- 1.5 总结
- 二、Servlet技术应用
- 2.1 HttpServlet中的主要方法及应用
- 2.1.1 基于Eclipse完成一个JavaWeb项目
- 2.2 HttpRequest,HttpResponse的应用
- 2.2.1客户端请求
- 2.2.2服务器响应
- 2.2.3Servlet HTTP 状态码
- 2.2.4图片验证码类
- 2.2.5注册模拟实现(带验证码)
- 2.3 ServletConfig对象和ServletContext对象的概念
- 2.4 总结
- 三、JSP技术应用
- 3.1 JSP基本语法
- 3.2 JSP标签和指令
- 3.3 JSP中的隐式对象
- 3.4 常用应用操作
- 3.4.1 JSP客户端请求
- 3.4.2 JSP服务器响应
- 3.4.3 HTTP状态码
- 3.4.4 表单处理
- 3.4.5 过滤器
- 3.4.6 Cookie处理
- 3.4.7 Session处理
- 3.4.8 文件上传
- 3.4.9 日期处理
- 3.4.10 页面重定向
- 3.4.11 点击量统计
- 3.4.12 自动刷新
- 3.4.13 发送邮件
- 3.5 JSP高级应用
- 3.5.1 JSP标准标签库(JSTL)
- 3.5.2 JSP连接数据库
- 3.5.3 JSP XML数据处理
- 3.5.4 JSP JavaBean
- 3.5.5 自定义标签
- 3.5.6 表达式语言
- 3.5.7 异常处理
- 3.5.8 调试
- 3.5.9 JSP国际化
- 3.6 实践代码
- 3.6.1 实践代码
- 3.6.2 项目实战
- 3.7 总结
- 四、MVC思想的理解和搭建MVC
- 4.1 MVC设计模式的思想
- 4.2 MVC设计模式的实现步骤
- 4.3 项目实践
- 4.4 总结
- 五、EL表达式和JSTL技术
- 5.1 EL表达式及其应用
- 5.2 常用的JSTL标签的应用
- 5.3 项目实践
- 5.4 总结
- 六、Cookie和Session
- 6.1 cookie对象的概念和应用
- 6.2 session对象的概念和应用
- 6.3 项目实践
- 6.4 总结
- 七、过滤器技术应用
- 7.1 Filter的概念及应用
- 7.2 Filter、FilterChain、FilterConfig 介绍
- 7.3 用户登录过滤案例
- 7.4 项目实战
- 7.5总结
- 八、异步请求技术
- 8.1 JSON数据格式
- 8.2 使用AJAX实现异步请求
- 8.3 用户名校验案例
- 8.4小结
- 综合项目技术实训
- 1.BS项目开发项目实战
- 2.项目需求分析和系统设计
- 2.1需求分析
- 2.2类型模型设计
- 2.3原型设计
- 3.项目数据库分析和系统设计
- 4.BS项目编程实现
- 4.1搭建框架和命名规约
- 4.2实现步骤
- 4.2.1创建实体类
- 4.2.2创建过滤器类
- 4.2.3创建工具类
- 4.2.4创建DAO接口及其实现类
- 4.2.5创建Service接口及其实现类
- 4.2.6创建测试类
- 4.2.7创建控制器类
- 5.企业开发流程规范
- 6.总结
- 九、练习题及答案
- 企业开发常用技术
- 1.Maven技术
- Java命名规范解读
- 参考资料
- 开发中常用的应用服务器和Web服务器