`
xiaohua2125
  • 浏览: 34296 次
  • 性别: Icon_minigender_1
  • 来自: 石家庄
社区版块
存档分类
最新评论

JSTL(JSP标准标签库)介绍

阅读更多
JSTL简介

JSTL是一个不断完善的开放源代码的JSP标签库,是由apache的jakarta小组来维护的。JSTL只能运行在支持JSP1.2和Servlet2.3规范的容器上,如tomcat 4.x。但是在即将推出的JSP 2.0中是作为标准支持的。
JSTL目前的最新版本为1.02,最终发布版为1.0。JSTL包含两个部分:标签库和EL(Expression Language表达式语言)语言。标签库目前支持四种标签: <tagname></tagname><tagname></tagname><tagname></tagname><tagname></tagname>

Library

URI

Prefix

Core

http://java.sun.com/jsp/jstl/core

c

XML processing

http://java.sun.com/jsp/jstl/xml

x

I18N formatting

http://java.sun.com/jsp/jstl/fmt

fmt

Database access

http://java.sun.com/jsp/jstl/sql

sql

Functions

http://java.sun.com/jsp/jstl/functions

fn


Core支持JSP中的一些基本的操作;
XML processing支持XML文档的处理;
I18N capable formatting支持对JSP页面的国际化;
Database access (SQL)支持JSP对数据库的操作。

由于本人水平有限,本文仅介绍Core标签,如有兴趣,可一起探讨其它三种标签的使用与扩充。

EL语言介绍

EL语言是JSTL输出(输入)一个JAVA表达式的表示形式。
在JSTL中,EL语言只能在属性值中使用。EL语言只能通过建立表达式${exp1}来进行调用。在属性值中使用表达式有三种方式。

1、 value属性包含一个表达式
<tag value="${expr}"></tag>
在这种情况下,表达式值被计算出来并根据类型转换规则赋值给value属性。比如:<out value="${username}"></out>中的${username}就是一个EL,它相当于JSP语句<!--equest.getAttribute(“username”-->或<!--ession.getAttribute(“username”-->

2、 value属性包含一个或多个属性,这些属性被文本分割或围绕
<tag value="some${expr}${expr}text${expr}"></tag>
在这种情况下,表达式从左到右进行计算,并将结果转换为字符串型(根据类型转换规则),并将结果赋值给value属性

3、 value属性仅仅包含文本
<tag value="sometext"></tag>
在这种情况下,字符串型属性value将根据类型转换规则转换为标签所希望的类型。

EL语言的操作符
取得某个对象或集合中的属性值
为了获得集合中的属性,EL支持以下两种操作
1. 使用.操作符来获得有名字的属性。例如表达式${user.username}表明对象user的username属性
2. 使用[]操作符来获得有名字或按数字排列的属性。
表达式${user["username"]}和表达式${user. username }含义相同
表达式${row[0]} 表明row集合的第一个条目。
在这里user是一个类的对象,它的属性username必须符合标准JavaBean的规范,即必须为username属性定义相应的getter、setter方法。

Empty操作符(空值检查)

使用empty操作符来决定对象、集合或字符串变量是否为空或null。例如:
${empty param.username}
如果request的参数列表中的username值为null,则表达式的值为true。 EL也可以直接使用比较操作符与null进行比较。如${param.firstname == null}。
比较操作符
操作符 描述
==或eq 相等检查
!=或ne 不等检查
<或lt 小于检查
>或gt 大于检查
<=或le 小于等于检查
>=或ge 大于等于检查

数字运算符与逻辑运算符均与JAVA语言相同,不再列表。

Core标签库

1、 通用标签

<out></out>
<out></out>标签用于在JSP中显示数据,它有如下属性
属 性 描 述 是否必须 缺省值
value 输出的信息,可以是EL表达式或常量
default value为空时显示信息
escapeXml 为true则避开特殊的xml字符集 true



例子:
您的用户名是: <out value="”${user.username}”" default="”guest”/"></out>

显示用户的用户名,如为空则显示guest
<out value="${sessionScope.username}"></out>

指定从session中获取username的值显示;
<out value="${username}"></out>

显示username的值,默认是从request(page)中取,如果request中没有名为username的对象则从session中取,session中没有则从application(servletContext)中取,如果没有取到任何值则不显示。


标签用于保存数据,它有如下属性
属 性 描 述 是否必须 缺省值
value 要保存的信息,可以是EL表达式或常量
target 需要修改属性的变量名,一般为javabean的实例
property 需要修改的javabean属性
var 需要保存信息的变量
scope 保存信息的变量的范围 page

如果指定了target属性, 那么property属性也必须指定。
例子:

将test.testinfo的值保存到session的test2中,其中test是一个javabean的实例,testinfo是test对象的属性。

将对象cust.address的city属性值保存到变量city中

<remove></remove>
<remove></remove>标签用于删除数据,它有如下属性
属 性 描 述 是否必须 缺省值
var 要删除的变量
scope 被删除变量的范围 所有范围,包括page、request、session、application等

例子:
<remove var="test2" scope="session"></remove>

从session中删除test2变量。

2、 流控制标签

<if></if>

<if></if>标签有如下属性
属 性 描 述 是否必须 缺省值
test 需要评价的条件,相当于if (...){}语句中的条件
var 要求保存条件结果的变量名
scope 保存条件结果的变量范围 page


<choose></choose>
这个标签不接受任何属性

<when></when>
<when></when>标签有以下属性
属 性 描 述 是否必须 缺省值
test 需要评价的条件


<otherwise></otherwise>
这个标签同样不接受任何属性

例子:
<if test="${user.wealthy}"></if>
user.wealthy is true.

如果user.wealthy值true,则显示user.wealthy is true.

<choose></choose>
<when test="${user.generous}"></when>
user.generous is true.

<when test="${user.stingy}"></when>
user.stingy is true.

<otherwise></otherwise>
user.generous and user.stingy are false.


只有当条件user.generous返回值是true时,才显示user.generous is true.
只有当条件user.stingy返回值是true时,才显示user.stingy is true.
其它所有的情况(即user.generous和user.stingy的值都不为true)全部显示user.generous and user.stingy are false.

由于JSTL没有形如if (){…} else {…}的条件语句,所以这种形式的语句只能用<choose></choose>、<when></when>和<otherwise></otherwise>标签共同来完成了。

3、 循环控制标签

<foreach></foreach>
<foreach></foreach>标签用于通用数据,它有以下属性
属 性 描 述 是否必须 缺省值
items 进行循环的项目
begin 开始条件 0
end 结束条件 集合中的最后一个项目
step 步长 1
var 代表当前项目的变量名
varStatus 显示循环状态的变量


例子:
<foreach var="vector" items="${vectors}"></foreach>
<out value="${vector}"></out>

相当于java语句
for (int i=0;iout.println(vectors.get(i));
}

在这里vectors是一个java.util.Vector对象,里面存放的是String数据,vector是当前循环条件下String对象。实际上这里的vectors可以是任何实现了java.util. Collection接口的对象。

<foreach var="i" begin="0" end="100" step="1"></foreach>
count=<out value="${i}"></out>



输出:
count=0
...
count=100

<fortokens></fortokens>
<fortokens></fortokens>标签有以下属性
属 性 描 述 是否必须 缺省值
items 进行循环的项目
delims 分割符
begin 开始条件 0
end 结束条件 集合中的最后一个项目
step 步长 1
var 代表当前项目的变量名
varStatus 显示循环状态的变量


例子

<fortokens var="token" items="a:b:c:d" delims=":"></fortokens>
<out value="${token}"></out>


这个标签的使用相当于java.util.StringTokenizer类。在这里将字符串a:b:c:d以:分开循环四次,token是循环到当前分割到的字符串。

4.导入文件和URL

JSTL核心标签库支持使用来包含文件,使用<url></url>来打印和格式化URL,使用<redirect></redirect>来重定向URL。


标签包含另外一个页面代码到当前页,它有以下属性
属 性 描 述 是否必须 缺省值
url 需要导入页面的url
context /后跟本地web应用程序的名字 当前应用程序
charEncoding 用于导入数据的字符集 ISO-8859-1
var 接受导入文本的变量名 page
scope 接受导入文本的变量的变量范围 1
varReader 用于接受导入文本的java.io.Reader变量名
varStatus 显示循环状态的变量


<url></url>
<url></url>标签输出一个url地址,它有以下属性
属 性 描 述 是否必须 缺省值
url url地址
context /后跟本地web应用程序的名字 当前应用程序
charEncoding 用于导入数据的字符集 ISO-8859-1
var 接受处理过的url变量名,该变量存储url 输出到页
scope 存储url的变量名的变量范围 page


例子:



将url http://www.url.com/edit.js包含到当前页的当前位置,并将url保存到newsfeed变量中

"/>

在当前页的当前位置输出,http://www.yourname.com是当前页的所在的位置。


<redirect></redirect>
<redirect></redirect>标签将请求重新定向到另外一个页面,它有以下属性
属 性 描 述 是否必须 缺省值
url url地址
context /后跟本地web应用程序的名字 当前应用程序

例子:

<redirect url="http://www.yourname.com/login.jsp"></redirect>

将请求重新定向到http://www.yourname.com/login.jsp页,相当于response.setRedirect("http://www.yourname.com/login.jsp");


标签用来传递参数给一个重定向或包含页面,它有以下属性
属 性 描 述 是否必须 缺省值
name 在request参数中设置的变量名
value 在request参数中设置的变量值

例子:

<redirect url="login.jsp"></redirect>



将参数888以id为名字传递到login.jsp页面,相当于login.jsp?id=888


JSTL的优点
1、 在应用程序服务器之间提供了一致的接口,最大程序地提高了WEB应用在各应用服务器之间的移植。
2、 简化了JSP和WEB应用程序的开发。
3、 以一种统一的方式减少了JSP中的scriptlet代码数量,可以达到没有任何scriptlet代码的程序。在我们公司的项目中是不允许有任何的scriptlet代码出现在JSP中。
4、 允许JSP设计工具与WEB应用程序开发的进一步集成。相信不久就会有支持JSTL的IDE开发工具出现。

总结
上面介绍的仅仅是JSTL的一部分,如果有时间我会继续把其它部分写出来分享给大家。如果要使用JSTL,则必须将jstl.jar和standard.jar文件放到classpath中,如果你还需要使用XML processing及Database access (SQL)标签,还要将相关JAR文件放到classpath中,这些JAR文件全部存在于下载回来的zip文件中。这个zip文件可以从http://jakarta.apache.org/builds/jakarta-taglibs/releases/standard/jakarta-taglibs-standard-1.0.zip下载。

参考资料
1、 http://java.sun.com/products/jsp/jstl/
sun公司的JSTL站点
2、 http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html
jakarta小组的JSTL站点
3、 http://www.manning.com/bayern/appendixA.pdf
JSTL的参考文档,本文很多内容都是从这个PDF文件里翻译的。
4、 <<J2EE编程指南(1.3版)>>
介绍了JSTL的雏形,wrox的书都是精品。
JSTL functions

Function call syntax

Description

fn:contains(string, substring)

Returns true if the string contains the substring

fn:containsIgnoreCase(string, substring)

Returns true if the string contains the substring, ignoring case

fn:endsWith(string, suffix)

Returns true if the string ends with the suffix

fn:escapeXml(string)

Returns the string with all characters that have special meaning in XML converted to their equivalent XML character entity code

fn:indexOf(string, substring)

Returns the index for the first occurrence of the substring in the string

fn:join(array, separator)

Returns a string composed from the array elements, separated by the separator

fn:length(item)

Returns the number of elements in the item if it's a collection or array, or the number of characters in the item if it's a string

fn:replace(string, before, after)

Returns a string where all occurrences of the before string have been replaced with the after string

fn:split(string, separator)

Returns an array where the elements are the parts of the string that are separated by the separator

fn:startsWith(string, prefix)

Returns true if the string starts with the prefix

fn:substring(string, begin, end)

Returns a part of the string, starting from the begin index up to and including the end index

fn:substringAfter(string, substring)

Returns the part of the string that follows the substring

fn:substringBefore(string, substring)

Returns the part of the string that precedes the substring

fn:toLowerCase(string)

Returns a string with all characters from the input converted to lowercase

fn:toUpperCase(string)

Returns a string with all characters from the input string converted to uppercase

fn:trim(string)

Returns a string with all leading and trailing whitespace characters in the input string removed



Validating parameter with JSTL
<c:forEach items="${paramValues.food}" var="current">
<c:choose>
<c:when test="${current == 'z'}">
<c:set var="pizzaSelected" value="true" />
</c:when>
<c:when test="${current == 'p'}">
<c:set var="pastaSelected" value="true" />
</c:when>
<c:when test="${current == 'c'}">
<c:set var="chineseSelected" value="true" />
</c:when>
<c:otherwise>
<c:set var="invalidSelection" value="true" />
</c:otherwise>
</c:choose>
</c:forEach>
<c:if test="${invalidSelection}">
<tr><td></td>
<td colspan="2"><font color="red">
Please select only valid Favorite Foods
</font></td></tr>
</c:if>
<tr>
<td>Favorite Foods:</td>
<td>
<input type="checkbox" name="food" value="z"
${pizzaSelected ? 'checked' : ''}>Pizza<br>
<input type="checkbox" name="food" value="p"
${pastaSelected ? 'checked' : ''}>Pasta<br>
<input type="checkbox" name="food" value="c"
${chineseSelected ? 'checked' : ''}>Chinese
</td>
</tr>

你可以使用这个链接引用该篇日志 http://publishblog.blogdriver.com/blog/tb.b?diaryID=979207

分享到:
评论

相关推荐

    JSP标准标签库(jstl)

    JSTL 1.0 发布于 2002 年 6 月,由四个定制标记库(core、format、xml 和 sql)和一对通用标记库验证器(ScriptFreeTLV 和 PermittedTaglibsTLV)组成。core 标记库提供了定制操作,通过限制了作用域的变量管理数据...

    JSTL(JSP标准标签库)介绍.doc

    JSTL,全称JavaServer Pages Standard Tag Library,是JSP的一种标准标签库,旨在简化JSP页面的开发,提高代码的可读性和可维护性。JSTL由Apache Jakarta组织维护,它提供了多种功能标签,包括核心标签、XML处理标签...

    JSTL(jsp标准标签库)

    ### JSTL(JSP标准标签库):增强JSP页面功能的关键技术 JSTL,全称为JSP Standard Tag Library(JSP标准标签库),是JavaServer Pages(JSP)技术的重要补充,旨在简化JSP页面的开发,提供了一系列预定义的、可...

    jstl标准标签库jar包.zip

    jstl标准标签库的三个jar包:jstl-1.2、jstl-api-1.2、jstl-impl-1.2。 jstl标准标签库的三个jar包:jstl-1.2、jstl-api-1.2、jstl-impl-1.2。 jstl标准标签库的三个jar包:jstl-1.2、jstl-api-1.2、jstl-impl-1.2...

    Java-JSTL(JSP标准标签库)介绍

    Java-JSTL,全称JavaServer Pages Standard Tag Library,是Java服务器页面标准标签库,它为JSP开发者提供了一系列预定义的、用于处理常见任务的标签。这些标签旨在简化JSP开发,提高代码的可读性和可维护性,降低与...

    jstl标准标签库

    JSTL(JSP Standard Tag Library)是Java服务器页面(JSP)的一种标准标签库,旨在简化JSP页面中的编程,提高代码的可读性和可维护性。它提供了丰富的标签来处理常见的页面逻辑,比如输出、条件判断、循环等,避免了...

    JSTL标准标签库

    **JSTL(JavaServer Pages Standard Tag Library)**是Java服务器页面的一个标准标签库,它提供了丰富的功能,使得在JSP中处理数据、控制流程变得更加简洁和高效。JSTL主要由几个不同的标签库组成,包括核心标签库、...

    JSTL 标签库 jsp C 标签库

    **JSTL(JavaServer Pages Standard Tag Library,JSP标准标签库)是Java社区为了简化JSP开发而提出的一个标准,它提供了一系列的标签来处理常见的任务,如迭代、条件判断、XML处理等,旨在减少Java代码在JSP页面中...

    JSP标准标签库

    ### JSP标准标签库(JSTL)详解 #### 一、JSTL简介 JSTL(JSP Standard Tag Library,JSP标准标签库)是由Sun Microsystems发布的一组用于简化JSP页面开发的标准标签库。它允许开发者使用预定义的标签来执行常见的...

    JSP标准标准库JSTL

    **JSP标准标签库(JSTL)详解** JSP(JavaServer Pages)标准标签库,简称JSTL,是Java EE平台中的一个重要组件,它为JSP开发提供了一套标准化的标签,使得开发者可以使用更简洁、更易读的方式来编写JSP页面,从而...

    JSTL标准标签库.pdf

    从JSP 1.1规范开始JSP就支持使用自定义标签,使用自定义标签大大降低了...许多WEB应用厂商都开发出了自己的一套标签库提供给用户使用,这导致出现了许多功能相同的标签,令网页制作者无所适从,不知道选择哪一家的好。

    JSP 标准标签库(c标签库)

    **JSP标准标签库(JSTL)与C标签库详解** JSP(JavaServer Pages)标准标签库(JSTL)是Java EE平台的一部分,它提供了一套标准的标签来处理常见任务,如迭代、条件判断、XML处理等,以简化JSP页面的编写,提高代码...

    jstl(jsp标准标签)

    总结来说,JSTL是JSP开发中的重要工具,通过提供一系列的标准标签,极大地提升了开发效率和代码质量。配合EL,可以实现声明式编程,使JSP页面更加专注于展示逻辑,而不是具体的业务处理。学习和熟练使用JSTL是每个...

    JSTL标准标签库的应用

    ### JSTL标准标签库的应用 #### 一、JSTL简介 JSTL(JavaServer Pages Standard Tag Library)是一个开放源代码的JSP标签库,由Apache的Jakarta项目组进行维护。JSTL的设计目标是简化Web应用程序的开发过程,通过...

    jsp标准标签库(各种标准标签库)

    ### JSP标准标签库(JSTL)详解 #### 6.1 JSTL简介 JSTL(JSP Standard Tag Library),即JSP标准标签库,是由Sun Microsystems提出并由Apache Jakarta组织维护的一种用于简化JSP开发的技术。JSTL提供了一套标准化...

    jsp标准标签库

    **JSP标准标签库(JSTL)**是Java服务器页面(JSP)技术的一个重要扩展,它提供了一组预定义的标签,用于简化JSP页面的开发和维护。JSTL的主要目标是减少在JSP中使用脚本元素,从而提高代码的可读性和可维护性。 ...

    jsp标准标签库的使用

    JSP标准标签库(JSTL)是JavaServer Pages Standard Tag Library的缩写,它是Java EE标准的一部分,用于简化JSP页面中的代码,提高可读性和维护性。JSTL提供了一系列预定义的标签,这些标签覆盖了常见任务,如控制流...

Global site tag (gtag.js) - Google Analytics