分享
 
 
 

JSTL Specification (1)

王朝java/jsp·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

JSTL Tag Libraries

Functional Area URI Prefix

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

XML processing http://java.sun.com/jsp/jstl/xml x

I18N capable formatting http://java.sun.com/jsp/jstl/fmt fmt

relational db access(SQL) http://java.sun.com/jsp/jstl/sql sql

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

Container Requirement

JSTL 1.1 requires a JSP 2.0 web container. Please note that the expression language is part of the JSP specification starting with JSP 2.0.

As defined by the JSP specification, the body content type can be one of empty,JSP, or tagdependent.

<c:set var=”varName” [scope=”{page|request|session|application}”]

value=”value”/>

<c:forEach var=”customer” items=”${customers}”>

Current customer is <c:out value=”${customer}”/>

</c:forEach>

The action must create the variable according to the semantics of PageContext.setAttribute(varName, PAGE_SCOPE), and it must remove it at the end of the action according to the semantics of

PageContext.removeAttribute(varName, PAGE_SCOPE)

White Spaces

Following the JSP specification (as well as the XML and XSLT specifications),whitespace characters are #x20, #x9, #xD, or #xA.

JSTL. Recommended tag prefixes are kept lowercase.as well as attributes such asdocSystemId and varDom

Errors and Exceptions

For instance, if <c:forEach> were to throw an exception when given a null value for the attribute items, it would be impossible to easily loop over a possibly missing string array that represents check-box selection in an HTML form (retrieved with an EL expression like ${paramValues.selections}). A better choice is to do nothing in this case.

it is possible in JSTL to define the resource

bundle used by I18N actions via the deployment descriptor (web.xml) as follows:

<web-app>

...

<context-param>

<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</

param-name>

<param-value>com.acme.MyResources</param-value>

</context-param>

...

</web-app>

Default Values

It is often desirable to display a default value if the output of an action yields a null value. This can be done in a generic way in JSTL by exporting the output of an action via attribute var, and then displaying the value of that scoped variable with action <c:out>.

For example:

<fmt:formatDate var=”formattedDate” value=”${reservationDate}”/>

Date: <c:out value=”${formattedDate}” default=”not specified”/>

<c:if test="${book.price <= user.preferences.spendingLimit}">

The book ${book.title} fits your budget!

</c:if>

For example, the following would display “Price of productName is productPrice” for a list of products.

<c:forEach var=”product" items=”${products}”>

<c:out value=”Price of ${product.name} is ${product.price}”/>

</c:forEach>

JSP scoped variable returned by a call to PageContext.findAttribute(identifier). This variable can therefore reside in any of the four JSP scopes: page, request, session, or application. A null value is

returned if the variable does not exist in any of the scopes

The code below displays all request parameters along with all their associated values.

<c:forEach var="aParam" items="${paramValues}">

param: ${aParam.key}

values:

<c:forEach var="aValue" items="${aParam.value}">

${aValue}

</c:forEach>

<br>

</c:forEach>

Request headers are also accessible in a similar fashion via implicit objects header and headerValues. initParam gives access to context initialization parameters, while cookie exposes cookies received in the request.

The “[]” operator allows for more generalized access, as shown below:

<%-- “productDir” is a Map object containing the description of

products, “preferences” is a Map object containing the

preferences of a user --%>

product:

${productDir[product.custId]}

shipping preference:

${user.preferences[“shipping”]}

Operators

A very useful “empty” operator is also provided.

The six standard relational operators are supported:

== (or eq), != (or ne), < (or lt), > (or gt), <= (or le), >= (or ge).

The second versions of the last 4 operators are made available to avoid having to use entity references in XML syntax.

Arithmetic operators consist of addition (+), substraction (-), multiplication (*),division (/ or div), and remainder/modulo (% or mod).

Logical operators consist of && (or and), || (or or), and ! (or not).

The empty operator is a prefix operator that can used to determine if a value is null or empty. For example:

<c:if test=”${empty param.name}”>

Please specify your name.

</c:if>

Automatic Type Conversion

For example, if request attributes beginValue and endValue are Integer objects,they will automatically be coerced to ints when used with the <c:forEach> action.

<c:forEach begin=”${requestScope.beginValue}”end=”${requestScope.endValue}”>

...

</c:forEach>

In the example below, the parameter String value param.start is coerced to a number and is then added to 10 to yield an int value for attribute begin.

<c:forEach items=”${products}” begin=”${param.start + 10}”>

...

</c:forEach>

In the following example, the expression ”${user.address.city}” evaluates to null rather than throwing a NullPointerException if there is no address associated with the user object. This way, a sensible default value can be displayed without having to worry about exceptions being thrown by the JSP page.

City: <c:out value=”${user.address.city}” default=”N/A”/>

<c:set> may also be used to set the property of a JavaBeans object, or add or set a specific element in a java.util.Map object. For example:.

<!-- set property in JavaBeans object -->

<c:set target="${cust.address}" property="city" value="${city}"/>

<!-- set/add element in Map object -->

<c:set target="${preferences}" property="color"

value="${param.color}"/>

<c:remove var="cachedResult" scope="application"/>

Finally, the <c:catch> action provides a complement to the JSP error page mechanism. It is meant to allow page authors to recover gracefully from error conditions that they can control. For example:

<c:catch var=”exception”>

<!-- Execution we can recover from if exception occurs -->

...

</c:catch>

<c:if test=”${exception != null}”>

Sorry. Processing could not be performed because...

</c:if>

<c:out>

Evaluates an expression and outputs the result of the evaluation to the currentJspWriter object.

Syntax

Without a body

<c:out value=”value” [escapeXml=”{true|false}”]

[default=”defaultValue”] />

With a body

<c:out value=”value” [escapeXml=”{true|false}”]>

default value

</c:out>

Deterrmines whether characters <,>,&,’,” in the resulting string should be converted to their corresponding character entity codes. Default value is true.

Default value if the resulting value is null.

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有