Always Learning

Core JavaServer Faces
David Geary
Cay S. Horstmann

ISBN-10: 0131463055
ISBN-13:  9780131463059

Publisher:  Prentice Hall
Copyright:  2004
Format:  Paper; 552 pp
Published:  06/15/2004
Status: Out of Stock


We're sorry, this product is no longer available.
Please contact your Pearson rep if you are using this product and need instructor resources.


Print this content

In this section:


Description

Appropriate for all courses in Java programming with JavaServer Faces (JSF), and many intermediate-to-advanced level courses on Java frameworks that are being updated to include JSF coverage.

Using JavaServer Faces (JSF), Java developers can build world-class Web user interfaces virtually without writing code. At the same time, JSF can help them simplify a wide range of complex tasks–from separating presentation and business logic to managing configuration. In Core JavaServer Faces, renowned Java developers David Geary and Cay Horstmann teach experienced Java developers all they need to create production-quality software with JSF 1.0. Geary (Graphic Java) and Horstmann (Core Java) systematically introduce JSF’s tags, the basic building blocks of JSF development. Students learn how to set up the JSF programming environment, connect JSF tags to application logic, provide navigation amongst pages, convert and validate input, and more. Then, using realistic, non-trivial code examples, the authors introduce more advanced tasks: creating custom converters and validators, handling events, sharing common content among multiple pages, building custom components, connecting to databases and external services, even supporting wireless clients. The book ends with a “How do I” chapter that answers students’ most common questions about JSF development. Also included: helpful notes on debugging, logging, and more. Like all Core Series books, Core JavaServer Faces is both a no-nonsense tutorial and a comprehensive reference: the fastest, most effective pathway to deep, practical mastery.


Features

This book provides a thorough tutorial and lasting reference for perhaps the most significant J2EE specification in recent memory.

° A Core book from Geary and Horstmann -- two top experts and best-selling Java technology authors

° Covers both the application framework and the component model in detail; includes appendices covering related open source tools such as ANT, JUnit, and Cactus

° Launch at JavaONE in June!


New To This Edition

NEW–The first comprehensive JavaServer Faces (JSF) tutorial and reference for experienced programmers.

~Helps experienced Java programmers rapidly master today’s most eagerly-awaited new Java technology.


Table of Contents



Preface.


Acknowledgments.


1.Getting Started.

Why JavaServer Faces.

Software Installation.

A Simple Example.

Ingredients.

Directory Structure.

Build Instructions.

Sample Application Analysis.

Beans.

JSF Pages.

Navigation.

Servlet Configuration.

The Welcome File.

Visual Development Environments.

JSF Framework Services.

Behind the Scenes.

Rendering Pages.

Decoding Requests.

The Life Cycle.

Automation of the Build Process with Ant.

Using the Deployment Manager with Ant.



2. Managed Beans.

Definition of a Bean.

Bean Properties.

Value Binding Expressions.

Message Bundles.

A Sample Application.

Backing Beans.

Bean Scopes.

Request Scope.

Session Scope.

Application Scope.

Configuring Beans.

Setting Property Values.

Initializing Lists and Maps.

Chaining Bean Definitions.

String Conversions.

The Syntax of Value Binding Expressions.

Using Brackets.

Map and List Expressions.

Resolving the Initial Term.

Composite Expressions.

Method Binding Expressions.



3. Navigation.

Static Navigation.

Dynamic Navigation.

Advanced Navigation Issues.

Redirection.

Wildcards.

Using from-action.

The Navigation Algorithm.



4. Standard JSF Tags.

An Overview of the JSF Core Tags.

An Overview of the JSF HTML Tags.

Common Attributes.

Forms.

Form Elements and JavaScript.

Text Fields and Text Areas.

Using Text Fields and Text Areas.

Displaying Text and Images.

Hidden Fields.

Buttons and Links.

Selection Tags.

Checkboxes and Radio Buttons.

Menus and Listboxes.

Items.

Messages.

Panels.



5. Data Tables.

The Data Table Tag.

A Simple Table.

h:dataTable Attributes.

Headers and Footers.

JSF Components in Table Cells.

Editing Table Cells.

Styles for Rows and Columns.

Styles by Column.

Styles by Row.

Database Tables.

JSTL Result vs. Result Sets.

Table Models.

Editing Table Models.

Sorting and Filtering.

Scrolling Techniques.

Scrolling with a Scrollbar.

Scrolling with Page Widgets.



6. Conversion and Validation.

Overview of the Conversion and Validation Process.

Using Standard Converters.

Conversion of Numbers and Dates.

Conversion Errors.

A Complete Converter Example.

Using Standard Validators.

Validating String Lengths and Numeric Ranges.

Checking for Required Values.

Displaying Validation Errors.

Bypassing Validation.

A Complete Validation Example.

Programming with Custom Converters and Validators.

Implementing Custom Converter Classes.

Implementing Custom Validator Classes.

Registering Custom Validators.

Validating with Bean Methods.

Validating Relationships Between Multiple Components.

Implementing Custom Tags.

Custom Converter Tags.

Custom Validator Tags.



7. Event Handling.

Life-Cycle Events.

Value Change Events.

Action Events.

Event Listener Tags.

Immediate Components.

Using Immediate Input Components.

Bypassing Conversion and Validation.

Phase Events.

Putting It All Together.



8. Subviews and Tiles.

Common Layouts.

A Book Viewer and a Library.

The Book Viewer.

Monolithic JSF Pages.

Common Content Inclusion.

Content Inclusion in JSP-Based Applications.

JSF-Specific Considerations.

Content Inclusion in the Book Viewer.

Looking at Tiles.

Installing Tiles.

Using Tiles with the Book Viewer.

Parameterizing Tiles.

Extending Tiles.

The Library.

Nested Tiles.

Tile Controllers.



9. Custom Components.

Implementing Custom Components with Classes.

Tags and Components.

The Custom Component Developer's Toolbox.

Encoding: Generating Markup.

Decoding: Processing Request Values.

Using Converters.

Implementing Custom Component Tags.

The Spinner Application.

Revisiting the Spinner.

Using an External Renderer.

Calling Converters from External Renderers.

Supporting Value Change Listeners.

Supporting Method Bindings.

Encoding JavaScript to Avoid Server Roundtrips.

Using Child Components and Facets.

Processing SelectItem Children.

Processing Facets.

Including Content.

Encoding CSS Styles.

Using Hidden Fields.

Saving and Restoring State.

Firing Action Events.

Using the Tabbed Pane.



10. External Services.

Accessing a Database.

Issuing SQL Statements.

Connection Management.

Plugging Connection Leaks.

Using Prepared Statements.

Configuring a Database Resource in Tomcat.

A Complete Database Example.

Using LDAP for Authentication.

LDAP Directories.

Configuring an LDAP Server.

Accessing LDAP Directory Information.

Managing Configuration Information.

Configuring a Bean.

Configuring the External Context.

Configuring a Container-Managed Resource.

Creating an LDAP Application.

Container-Managed Authentication and Authorization.

Using Web Services.



11. Wireless Clients.

Rendering Technologies for Mobile Clients.

MIDP Basics.

Canvases and Forms.

Commands and Keys.

Networking.

Multithreading.

The MIDP Emulator.

Mobile Communication and Control Flow.

Component Implementation for Mobile Clients.

The Battleship Game.

The Game Rules.

The User Interface.

Implementation.



12. How Do I?

Web User Interface Design.

How do I support file uploads?

How do I show an image map?

How do I include an applet in my page?

How do I produce binary data in a JSF page?

How do I show a large data set one page at a time?

How do I generate a popup window?

How do I customize error pages?

Validation.

How do I use the Struts framework for client-side validation?

How do I write my own client-side validation tag?

How do I use the Jakarta Commons Validator for client-side validation?

How do I validate relationships between components?

Programming.

How do I use JSF with Eclipse?

How do I locate a configuration file?

How do I get the form ID for generating document.forms[id] in JavaScript?

How do I make a JavaScript function appear only once per page?

How do I package a set of tags into a JAR file?

How do I carry out initialization or cleanup work?

How do I extend the JSF expression language?

How do I choose different render kits?

Debugging and Logging.

How do I decipher a stack trace?

How do I find the logs?

How do I find out what parameters my page received?

How do I turn on logging of the JSF container?

How do I replace catalina.out with rotating logs?

How do I find the library source?



Index.



Back to top

Print this content

In this section:


Sample Chapter

View a Sample Chapter PDF:/samplechapter/0131463055.pdf


Author Bios

Cay S. Horstmann is a professor of computer science at San Jose State University. Previously he was vice president and chief technology officer of Preview Systems Inc. and a consultant on C++, Java, and Internet programming for major corporations, universities, and organizations.




Backcover Copy

JavaServer Faces promises to bring rapid user-interface development to server-side Java. It allows developers to painlessly write server-side applications without worrying about the complexities of dealing with browsers and Web servers. It also automates low-level, boring details like control flow and moving code between web forms and business logic.

JavaServer Faces was designed to support drag and drop development of server-side applications," but you can also think of it as a conceptual layer on top of servlets and JavaServer Pages (JSP). Experienced JSP developers will find that JavaServer Faces provides much of the plumbing that they currently have to implement by hand. If you already use a server-side framework such as Struts, you will find that JavaServers Faces uses a similar architecture, but is more flexible and extensible. JavaServer Faces also comes with server-side components and an event model, which are fundamentally similar to the same concepts in Swing.

JavaServer Faces is quickly becoming the standard Web-application framework. Core JavaServer Faces is the one book you need to master this powerful and time-saving technology.

Without assuming knowledge of JSP and servlets, Core JavaServer Faces:

  • shows how to build more robust applications and avoid tedious handcoding
  • answers questions most developers don't even know to ask
  • demonstrates how to use JSF with Tiles to build consistent user interfaces automatically
  • provides hints, tips, and explicit "how-to" information that allows you to quickly become more productive
  • explains how to integrate JSF with databases, use directory services, wireless apps, and Web services
  • teaches best practices and good habits like using style sheets and message bundles
  • covers all of the JSF tags and how to create new tag libraries

Back to top

Log in to the Instructor Resource Center

Login name: 

  Password: 

Forgot login/password?  |  Need to redeem an access code?

        

Instructor Resource Center File Download

This work is protected by local and international copyright laws and is provided solely for the use of instructors in teaching their courses and assessing student learning. Dissemination or sale of any part of this work (including on the World Wide Web) will destroy the integrity of the work and is not permitted. The work and materials from this site should never be made available to students except by instructors using the accompanying text in their classes. All recipients of this work are expected to abide by these restrictions and to honor the intended pedagogical purposes and the needs of other instructors who rely on these materials.

Cancel     I accept, proceed with download

Print this content

Pearson Higher Education offers special pricing when you choose to package your text with other student resources. If you're interested in creating a cost-saving package for your students contact your Pearson Higher Education representative.

Back to top