程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> SCWCD1.4的資料

SCWCD1.4的資料

編輯:關於JAVA

開始復習的是080。

看了幾位前輩的帖子,才知道081和080有很大的不同。

以下為增加的兩部分,為EL和JSTL。

Chapter 7. Building JSP Pages Using the Expression Language (EL)

Given a scenario(方案;情況;概要), write EL code that Accesses the following implicit variables including: pageScope, requestScope, sessionScope, and applicationScope, param and paramValues, header and headerValues, cookIE, initParam and pageContext.

There are several implicit objects that are available to EL expressions used in JSP pages. These objects are always available under these names(講的是EL的隱含對象和簡單的說明)

然後舉了幾個例子,有EL的.運算和[]運算。

Chapter 9. Building JSP Pages Using Tag LibrarIEsFor a custom tag library or a library of Tag Files, create the 'taglib' directive for a JSP page.

The set of significant(有意義的, 重大的, 重要的) tags a JSP container interprets (解釋, 說明)can be extended through a tag library.

The taglib directive in a JSP page declares that the page uses a tag library, uniquely(獨特地,唯一地,珍奇地) identifIEs the tag library using a URI and associates(使發生聯系, 使聯合) a tag prefix that will distinguish usage of the actions in the library.

If a JSP container implementation cannot locate a tag library description, a fatal translation error shall result.

It is a fatal translation error for the taglib directive to appear after actions or functions using the prefix.

In the following example, a tag library is introduced and made available to this page using the super prefix; no other tag librarIEs should be introduced in this page using this prefix. In this particular case, we assume the tag library includes a doMagic element type, which is used within the page.

JSTL增加的部分:

Given a design goal, use an appropriate(適當的) JSP Standard Tag Library (JSTL v1.1) tag from the "core" tag library.

The center of JSTL is the core taglib. This can be split into five areas:

General purpose

Variables support

Conditional

Iterator

URL Related

To use the core library, use the following directive:

<%@ taglib prefix="c" uri="http://Java.sun.com/JStl/core" %>The prefix attribute specifIEs(指定,規定,確定) the prefix used in the tag name for a particular library. For example, the core library includes a tag named out. When combined with a prefix of c, the full tag would be . You are free to use any prefix you like, but you must use different prefixes for each of the four standard tag librarIEs.

You must also put the corresponding(相應的) .tld file for each tag library in your /WEB-INF directory and use the taglib element in your web.XML file to include the tag library:

http://Java.sun.com/JStl/core /WEB-INF/tld/core.tld

General purpose tags.

The general-purpose tags let you display variable values, and enclose(封閉,密封;包裝,包圍) a group of tags within a try-catch block.

The action provides a capability(能力, 性能, 容量)similar to JSP expressions such as <%= scripting-language-expression %> or ${el-expression}. For example:

You have items.

The action allows page authors to handle errors from any action in a uniform(統一的, 相同的) fashion, and allows for error handling for multiple actions at once. provides page authors with granular(粒度[狀) error handling: Actions that are of central importance to a page should not be encapsulated(密封) in a , so their exceptions will propagate to an error page, whereas actions with secondary importance to the page should be wrapped in a , so they never cause the error page mechanism to be invoked(調用). The exception thrown is stored in the scoped variable identified by var, which always has page scope. If no exception occurred, the scoped variable identifIEd by var is removed if it existed. If var is missing, the exception is simply caught and not saved.

nested(嵌套的) actions這部分基本上涉及了JSTL的所有內容。

包括

還有

詳細內容見http://Java.boot.by/wcd-guide/ch09s03.Html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved