The J2EE Tutorial, 2/e (Paperback)
暫譯: J2EE 教程 (第二版)

Stephanie Bodoff, Eric Armstrong, Jennifer Ball, Debbie Carson, Ian Evans, Dale Green, Kim Haase, Eric Jendrock

  • 出版商: Addison Wesley
  • 出版日期: 2004-07-09
  • 售價: $2,390
  • 貴賓價: 9.5$2,271
  • 語言: 英文
  • 頁數: 1568
  • 裝訂: Paperback
  • ISBN: 032124575X
  • ISBN-13: 9780321245755
  • 已過版

買這商品的人也買了...

相關主題

商品描述

Table of Contents:

Foreword.

About This Tutorial.

1. Overview.

Distributed Multitiered Applications.2

J2EE Containers.

Web Services Support.

Packaging Applications.

Development Roles.

J2EE 1.4 Platform APIs.

Sun Java System Application Server Platform Edition 8.

2. Understanding XML.

Introduction to XML.

Generating XML Data.

Designing an XML Data Structure.

Summary.

3. Getting Started with Web Applications.

Web Application Life Cycle.

Web Modules.

Configuring Web Applications.

Duke's Bookstore Examples.

Accessing Databases from Web Applications.

Further Information.

4. Java API for XML Processing.

The JAXP APIs.

An Overview of the Packages.

The Simple API for XML APIs.

The Document Object Model APIs.

The Extensible Stylesheet Language Transformations APIs.

Using the JAXP Libraries.

Where Do You Go from Here?

5. Simple API for XML.

When to Use SAX.

Adding Additional Event Handlers.

Handling Errors with the Nonvalidating Parser.

Displaying Special Characters and CDATA.

Parsing with a DTD.

Choosing Your Parser Implementation.

Using the Validating Parser.

Parsing a Parameterized DTD.

Handling Lexical Events.

Using the DTDHandler and EntityResolver.

Further Information.

6. Document Object Model.

When to Use DOM.

Reading XML Data into a DOM.

Displaying a DOM Hierarchy.

Examining the Structure of a DOM.

Constructing a User-Friendly JTree from a DOM.

Creating and Manipulating a DOM.

Validating with XML Schema.

Further Information.

7. Extensible Stylesheet Language Transformations.

Introducing XSL, XSLT and XPath.

How XPath Works.

Generating XML from an Arbitrary Data Structure.

Transforming XML Data with XSLT.

Transforming from the Command Line with Xalan.

Concatenating Transformations with a Filter Chain.

Further Information.

8. Building Web Services with JAX-RPC.

Setting the Port.

Creating a Simple Web Service and Client with JAX-RPC.

Types Supported by JAX-RPC.

Web Service Clients.

Web Services Interoperability and JAX-RPC.

Further Information.

9. SOAP with Attachments API for Java.

Overview of SAAJ.

Tutorial.

Code Examples.

Further Information.

10. Java API for XML Registries.

Implementing a JAXR Client .

Running the Client Examples.

Using JAXR Clients in J2EE Applications.

Further Information.

11. Java Servlet Technology.

What Is a Servlet?

The Example Servlets.

Servlet Life Cycle.

Sharing Information.

Initializing a Servlet.

Writing Service Methods.

Filtering Requests and Responses.

Invoking Other Web Resources.

Accessing the Web Context.

Maintaining Client State.

Finalizing a Servlet.

Further Information.

12. JavaServer Pages Technology.

What Is a JSP Page?

The Example JSP Pages.

The Life Cycle of a JSP Page.

Creating Static Content.

Creating Dynamic Content.

Expression Language.

JavaBeans Components.

Using Custom Tags.

Reusing Content in JSP Pages.

Transferring Control to Another Web Component.

Including an Applet.

Setting Properties for Groups of JSP Pages.

Further Information.

13. JavaServer Pages Documents.

The Example JSP Document.

Creating a JSP Document.

Identifying the JSP Document to the Container.

14. JavaServer Pages Standard Tag Library.

The Example JSP Pages.

Using JSTL.

Core Tag Library.

XML Tag Library.

Internationalization Tag Library.

SQL Tag Library.

Functions.

Further Information.

15. Custom Tags in JSP Pages.

What Is a Custom Tag?

The Example JSP Pages.

Types of Tags.

Encapsulating Reusable Content Using Tag Files.

Tag Library Descriptors.

Programming Simple Tag Handlers.

16. Scripting in JSP Pages.

The Example JSP Pages.

Using Scripting.

Disabling Scripting.

Declarations.

Scriptlets.

Expressions.

Programming Tags That Accept Scripting Elements.

17. JavaServer Faces Technology.

JavaServer Faces Technology Benefits.

What Is a JavaServer Faces Application?

Framework Roles.

A Simple JavaServer Faces Application.

User Interface Component Model.

Navigation Model.

Backing Bean Management.

How the Pieces Fit Together.

The Life Cycle of a JavaServer Faces Page.

Further Information.

18. Using JavaServer Faces Technology in JSP Pages.

The Example JavaServer Faces Application.

Setting Up a Page.

Using the Core Tags.

Using the HTML Component Tags.

Using Localized Messages.

Using the Standard Converters.

Registering Listeners on Components.

Using the Standard Validators.

Binding Component Values and Instances to External Data Sources.

Referencing a Backing Bean Method.

Using Custom Objects.

19. Developing with JavaServer Faces Technology.

Writing Component Properties.

Performing Localization.

Creating a Custom Converter.

Implementing an Event Listener.

Creating a Custom Validator.

Writing Backing Bean Methods.

20. Creating Custom UI Components.

Determining Whether You Need a Custom Component or Renderer.

Understanding the Image Map Example.

Steps for Creating a Custom Component.

Creating the Component Tag Handler.

Defining the Custom Component Tag in a Tag Library Descriptor.

Creating Custom Component Classes.

Delegating Rendering to a Renderer.

Handling Events for Custom Components.

21. Configuring JavaServer Faces Applications.

Application Configuration Resource File.

Configuring Beans.

Registering Messages.

Registering a Custom Validator.

Registering a Custom Converter.

Configuring Navigation Rules.

Registering a Custom Renderer with a Render Kit.

Registering a Custom Component.

Basic Requirements of a JavaServer Faces Application.

22. Internationalizing and Localizing Web Applications.

Java Platform Localization Classes.

Providing Localized Messages and Labels.

Date and Number Formatting.

Character Sets and Encodings.

Further Information.

23. Enterprise Beans.

What Is an Enterprise Bean?

What Is a Session Bean?

What Is an Entity Bean?

What Is a Message-Driven Bean?

Defining Client Access with Interfaces.

The Contents of an Enterprise Bean.

Naming Conventions for Enterprise Beans.

The Life Cycles of Enterprise Beans.

Further Information.

24. Getting Started with Enterprise Beans.

Creating the J2EE Application.

Creating the Enterprise Bean.

Creating the Application Client.

Creating the Web Client.

Mapping the Enterprise Bean References.

Specifying the Web Client's Context Root.

Deploying the J2EE Application.

Running the Application Client.

Running the Web Client.

Modifying the J2EE Application.

25. Session Bean Examples.

The CartBean Example.

A Web Service Example: HelloServiceBean.

Other Enterprise Bean Features.

Using the Timer Service.

Handling Exceptions.

26. Bean-Managed Persistence Examples.

The SavingsAccountBean Example.

Mapping Table Relationships for Bean-Managed Persistence.

Primary Keys for Bean-Managed Persistence.

deploytool Tips for Entity Beans with Bean-Managed Persistence.

27. Container-Managed Persistence Examples.

Overview of the RosterApp Application.

The PlayerBean Code.

Method Invocations in RosterApp.

Building and Running the RosterApp Example.

A Guided Tour of the RosterApp Settings.

Primary Keys for Container-Managed Persistence.

Advanced CMP Topics: The OrderApp Example.

deploytool Tips for Entity Beans with Container-Managed Persistence.

28. A Message-Driven Bean Example.

Example Application Overview.

The Application Client.

The Message-Driven Bean Class.

Deploying and Running SimpleMessageApp.

deploytool Tips for Message-Driven Beans.

deploytool Tips for Components That Send Messages.

29. Enterprise JavaBeans Query Language.

Terminology.

Simplified Syntax.

Example Queries.

Full Syntax.

EJB QL Restrictions.

30. Transactions.

What Is a Transaction?

Container-Managed Transactions.

Bean-Managed Transactions.

Summary of Transaction Options for Enterprise Beans.

Transaction Timeouts.

Isolation Levels.

Updating Multiple Databases.

Transactions in Web Components.

31. Resource Connections.

JNDI Naming.

DataSource Objects and Connection Pools.

Database Connections.

Mail Session Connections.

URL Connections.

Further Information.

32. Security.

Overview.

Realms, Users, Groups, and Roles.

Web-Tier Security.

Understanding Login Authentication.

Installing and Configuring SSL Support.

XML and Web Services Security.

EJB-Tier Security.

Application Client-Tier Security.

EIS-Tier Security.

Propagating Security Identity.

What Is Java Authorization Contract for Containers?

Further Information.

34. The Java Message Service API.

Overview.

Basic JMS API Concepts.

The JMS API Programming Model.

Writing Simple JMS Client Applications.

Creating Robust JMS Applications.

Using the JMS API in a J2EE Application.

Further Information.

34. J2EE Examples Using the JMS API.

A J2EE Application That Uses the JMS API with a Session Bean.

A J2EE Application That Uses the JMS API with an Entity Bean.

An Application Example That Consumes Messages from a Remote J2EE Server.

An Application Example That Deploys a Message-Driven Bean on Two J2EE Servers.

35. The Coffee Break Application.

Common Code.

JAX-RPC Coffee Supplier Service.

SAAJ Coffee Supplier Service.

Coffee Break Server.

JavaServer Faces Version of Coffee Break Server.

Building, Packaging, Deploying, and Running the Application.

36. The Duke's Bank Application.

Enterprise Beans.

Application Client.

Internationalization.

Building, Packaging, Deploying, and Running the Application.

Running the Clients.

Appendix A: Java Encoding Schemes.

Further Information.

Appendix B: XML and Related Specs: Digesting the Alphabet Soup.

Basic Standards.

Schema Standards.

Linking and Presentation Standards.

Knowledge Standards.

Standards That Build on XML .

Summary.

Appendix C: HTTP Overview.

HTTP Requests.

HTTP Responses.

Appendix D: J2EE Connector Architecture.

About Resource Adapters.

Resource Adapter Contracts.

Common Client Interface.

Further Information.

Glossary.About the Authors.Index.

商品描述(中文翻譯)

目錄:

前言。

關於本教程。

1. 概述。
- 分散式多層應用程式。
- J2EE 容器。
- 網路服務支援。
- 應用程式打包。
- 開發角色。
- J2EE 1.4 平台 API。
- Sun Java System 應用伺服器平台版 8。

2. 理解 XML。
- XML 簡介。
- 生成 XML 數據。
- 設計 XML 數據結構。
- 總結。

3. 開始使用網路應用程式。
- 網路應用程式生命週期。
- 網路模組。
- 配置網路應用程式。
- Duke 的書店範例。
- 從網路應用程式訪問資料庫。
- 進一步資訊。

4. Java API 用於 XML 處理。
- JAXP API。
- 套件概述。
- 簡單 API 用於 XML API。
- 文件物件模型 API。
- 可擴展樣式表語言轉換 API。
- 使用 JAXP 函式庫。
- 接下來該怎麼做?

5. 簡單 API 用於 XML。
- 何時使用 SAX。
- 添加額外的事件處理器。
- 使用非驗證解析器處理錯誤。
- 顯示特殊字符和 CDATA。
- 使用 DTD 解析。
- 選擇解析器實現。
- 使用驗證解析器。
- 解析參數化 DTD。
- 處理詞法事件。
- 使用 DTDHandler 和 EntityResolver。
- 進一步資訊。

6. 文件物件模型。
- 何時使用 DOM。
- 將 XML 數據讀入 DOM。
- 顯示 DOM 階層。
- 檢查 DOM 的結構。
- 從 DOM 構建用戶友好的 JTree。
- 創建和操作 DOM。
- 使用 XML Schema 驗證。
- 進一步資訊。

7. 可擴展樣式表語言轉換。
- 介紹 XSL、XSLT 和 XPath。
- XPath 的工作原理。
- 從任意數據結構生成 XML。
- 使用 XSLT 轉換 XML 數據。
- 使用 Xalan 從命令行轉換。
- 使用過濾器鏈串接轉換。
- 進一步資訊。

8. 使用 JAX-RPC 構建網路服務。
- 設定端口。
- 使用 JAX-RPC 創建簡單的網路服務和客戶端。
- JAX-RPC 支援的類型。
- 網路服務客戶端。
- 網路服務互操作性和 JAX-RPC。
- 進一步資訊。

9. Java 的 SOAP 附件 API。
- SAAJ 概述。
- 教程。
- 代碼範例。
- 進一步資訊。

10. Java API 用於 XML 註冊表。
- 實現 JAXR 客戶端。
- 運行客戶端範例。
- 在 J2EE 應用程式中使用 JAXR 客戶端。
- 進一步資訊。

11. Java Servlet 技術。
- 什麼是 Servlet?
- 範例 Servlet。
- Servlet 生命週期。
- 共享資訊。
- 初始化 Servlet。
- 編寫服務方法。
- 過濾請求和響應。
- 調用其他網路資源。
- 訪問網路上下文。
- 維護客戶端狀態。
- 最終化 Servlet。
- 進一步資訊。

12. JavaServer Pages 技術。
- 什麼是 JSP 頁面?
- 範例 JSP 頁面。
- JSP 頁面的生命週期。
- 創建靜態內容。
- 創建動態內容。
- 表達式語言。
- JavaBeans 組件。
- 使用自定義標籤。
- 在 JSP 頁面中重用內容。
- 將控制權轉移到其他網路組件。
- 包含小應用程式。
- 為 JSP 頁面組設置屬性。
- 進一步資訊。

13. JavaServer Pages 文件。
- 範例 JSP 文件。
- 創建 JSP 文件。
- 向容器識別 JSP 文件。

14. JavaServer Pages 標準標籤庫。
- 範例 JSP 頁面。
- 使用 JSTL。
- 核心標籤庫。
- XML 標籤庫。
- 國際化標籤庫。
- SQL 標籤庫。
- 函數。
- 進一步資訊。

15. JSP 頁面中的自定義標籤。
- 什麼是自定義標籤?
- 範例 JSP 頁面。
- 標籤類型。
- 使用標籤文件封裝可重用內容。
- 標籤庫描述符。
- 編寫簡單標籤處理器。

16. JSP 頁面中的腳本。
- 範例 JSP 頁面。
- 使用腳本。
- 禁用腳本。
- 聲明。
- 腳本片段。
- 表達式。
- 編寫接受腳本元素的標籤。

17. JavaServer Faces 技術。
- JavaServer Faces 技術的好處。
- 什麼是 JavaServer Faces 應用程式?
- 框架角色。
- 一個簡單的 JavaServer Faces 應用程式。
- 用戶界面組件模型。
- 導航模型。
- 後台 Bean 管理。
- 各部分如何協同工作。
- JavaServer Faces 頁面的生命週期。
- 進一步資訊。

18. 在 JSP 頁面中使用 JavaServer Faces 技術。
- 範例 JavaServer Faces 應用程式。
- 設置頁面。
- 使用核心標籤。
- 使用 HTML 組件標籤。
- 使用本地化消息。
- 使用標準轉換器。
- 在組件上註冊監聽器。
- 使用標準驗證器。
- 將組件值和實例綁定到外部數據源。
- 引用後台 Bean 方法。
- 使用自定義對象。

19. 使用 JavaServer Faces 技術進行開發。
- 編寫組件屬性。
- 執行本地化。
- 創建自定義轉換器。
- 實現事件監聽器。
- 創建自定義驗證器。
- 編寫後台 Bean 方法。
- 創建自定義 UI 組件。
- 確定是否需要自定義組件或渲染器。
- 理解圖像地圖範例。
- 創建自定義組件的步驟。
- 創建組件標籤處理器。
- 在標籤庫描述符中定義自定義組件標籤。
- 創建自定義組件類。
- 將渲染委派給渲染器。
- 處理自定義組件的事件。

20. 配置 JavaServer Faces 應用程式。
- 應用程式配置資源文件。
- 配置 Beans。
- 註冊消息。
- 註冊自定義驗證器。
- 註冊自定義轉換器。
- 配置導航規則。
- 在渲染工具包中註冊自定義渲染器。
- 註冊自定義組件。
- JavaServer Faces 應用程式的基本要求。

21. 國際化和本地化網路應用程式。
- Java 平台本地化類。
- 提供本地化消息和標籤。
- 日期和數字格式化。
- 字符集和編碼。
- 進一步資訊。

22. 企業 Bean。
- 什麼是企業 Bean?
- 什麼是會話 Bean?
- 什麼是實體 Bean?
- 什麼是消息驅動 Bean?
- 使用介面定義客戶端訪問。
- 企業 Bean 的內容。
- 企業 Bean 的命名慣例。
- 企業 Bean 的生命週期。
- 進一步資訊。

23. 開始使用企業 Bean。
- 創建 J2EE 應用程式。
- 創建企業 Bean。
- 創建應用程式客戶端。
- 創建網路客戶端。
- 映射企業 Bean 引用。
- 指定網路客戶端的上下文根。
- 部署 J2EE 應用程式。
- 運行應用程式客戶端。
- 運行網路客戶端。
- 修改 J2EE 應用程式。

24. 會話 Bean 範例。
- CartBean 範例。
- 網路服務範例:HelloServiceBean。
- 其他企業 Bean 特性。
- 使用計時器服務。
- 處理異常。

25. Bean 管理的持久性範例。
- SavingsAccountBean 範例。
- 映射 Bean 管理的持久性表關係。
- Bean 管理的持久性主鍵。
- deploytool 對於具有 Bean 管理持久性的實體 Bean 的提示。

26. 容器管理的持久性範例。
- RosterApp 應用程式概述。
- PlayerBean 代碼。
- RosterApp 中的方法調用。
- 構建和運行 RosterApp 範例。
- RosterApp 設定的導覽。
- 容器管理持久性的主鍵。
- 高級 CMP 主題:OrderApp 範例。
- deploytool 對於具有容器管理持久性的實體 Bean 的提示。

27. 消息驅動 Bean 範例。
- 範例應用程式概述。
- 應用程式客戶端。
- 消息驅動 Bean 類。
- 部署和運行 SimpleMessageApp。
- deploytool 對於消息驅動 Bean 的提示。
- deploytool 對於發送消息的組件的提示。

28. 企業 JavaBeans 查詢語言。
- 術語。
- 簡化語法。
- 範例查詢。
- 完整語法。
- EJB QL 限制。

29. 交易。
- 什麼是交易?
- 容器管理的交易。
- Bean 管理的交易。
- 企業 Bean 的交易選項總結。
- 交易超時。
- 隔離級別。
- 更新多個資料庫。
- 網路組件中的交易。

30. 資源連接。
- JNDI 命名。
- DataSource 對象和連接池。
- 資料庫連接。
- 郵件會話連接。
- URL 連接。
- 進一步資訊。

31. 安全性。
- 概述。
- 領域、用戶、群組和角色。
- 網路層安全性。
- 理解登錄身份驗證。
- 安裝和配置 SSL 支援。
- XML 和網路服務安全性。
- EJB 層安全性。
- 應用程式客戶端層安全性。
- EIS 層安全性。
- 傳播安全身份。
- 什麼是 Java 容器授權合約?
- 進一步資訊。

32. Java 消息服務 API。
- 概述。
- 基本 JMS API 概念。
- JMS API 編程模型。
- 編寫簡單的 JMS 客戶端。

最後瀏覽商品 (20)