概述
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语句或
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 default="”guest”/" value="”${user.username}”"></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 scope="session" var="test2"></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 items="${vectors}" var="vector"></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 step="1" begin="0" end="100" var="i"></foreach> count=<out value="${i}"></out> |
输出:
count=0
...
count=100
<fortokens></fortokens>
<fortokens></fortokens>标签有以下属性
属 性 | 描 述 | 是否必须 | 缺省值 |
items | 进行循环的项目 | 是 | 无 |
delims | 分割符 | 是 | 无 |
begin | 开始条件 | 否 | 0 |
end | 结束条件 | 否 | 集合中的最后一个项目 |
step | 步长 | 否 | 1 |
var | 代表当前项目的变量名 | 否 | 无 |
varStatus | 显示循环状态的变量 | 否 | 无 |
例子
<fortokens items="a:b:c:d" delims=":" var="token"></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
最后
以上就是朴素高山为你收集整理的JSTL(JSP标准标签库)介绍的全部内容,希望文章能够帮你解决JSTL(JSP标准标签库)介绍所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复