Items related to Core JavaServer Faces

Core JavaServer Faces - Softcover

  • 3.50 out of 5 stars
    102 ratings by Goodreads
 
9780131738867: Core JavaServer Faces

Synopsis

JavaServer Faces (JSF) is quickly emerging as the leading solution for rapid user interface development in Java-based server-side applications. Now, Core JavaServer™ Faces–the #1 guide to JSF–has been thoroughly updated in this second edition, covering the latest feature enhancements, the powerful Ajax development techniques, and open source innovations that make JSF even more valuable.

Authors David Geary and Cay Horstmann delve into all facets of JSF 1.2 development, offering systematic best practices for building robust applications, minimizing handcoding, and maximizing productivity. Drawing on unsurpassed insider knowledge of the Java platform, they present solutions, hints, tips, and “how-tos” for writing superior JSF 1.2 production code, even if you’re new to JSF, JavaServer Pages™, or servlets.

The second edition’s extensive new coverage includes: JSF 1.2’s improved alignment with the broader Java EE 5 platform; enhancements to the JSF APIs; controlling Web flow with Shale; and using Facelets to replace JSP with XHTML markup. The authors also introduce Ajax development with JSF–from real-time validation and Direct Web Remoting to wrapping Ajax in JSF components and using the popular Ajax4jsf framework.

This book will help you

  • Automate low-level details and eliminate unnecessary complexity in server-side development
  • Discover JSF best practices, ranging from effective UI design and style sheets to internationalization
  • Use JSF with Tiles to build consistent, reusable user interfaces
  • Leverage external services such as databases, LDAP directories, authentication/authorization, and Web services
  • Use JBoss Seam to greatly simplify development of database-backed applications
  • Implement custom components, converters, and validators
  • Master the JSF 1.2 tag libararies, and extend JSF with additional tag libraries

Preface
Acknowledgments

Chapter 1: Getting Started
Chapter 2: Managed Beans
Chapter 3: Navigation
Chapter 4: Standard JSF Tags
Chapter 5: Data Tables
Chapter 6: Conversion and Validation
Chapter 7: Event Handling
Chapter 8: Subviews and Tiles
Chapter 9: Custom Components, Converters, and Validators
Chapter 10: External Services
Chapter 11: Ajax
Chapter 12: Open Source
Chapter 13: How Do I . . .
Index 

"synopsis" may belong to another edition of this title.

About the Author

David Geary, who worked at Sun Microsystems from 1994 through 1997, was a member of the JSF 1.0 Expert Group. He is president of Clarity Training Inc., a training and consulting company focusing on server-side Java technology, and is the author of eight books on Java technology, including the best-selling Graphic Java™ 2 series, Advanced JavaServer Pages, and Google™ Web Toolkit Solutions (all from Prentice Hall). David was also a member of the JSTL Expert Group, was the Second Apache Struts committer, and wrote questions for Sun's Web Developer Certification Exam. David is a regular speaker on the popular No Fluff Just Stuff tour and is a JavaOne Rock Star, by virtue of his Shale Presentation with Craig McClanahan in 2005.

Cay S. Horstmann is a professor of computer science at San Jose State University. He has served as vice president and chief technology officer of Preview Systems Inc., and as a consultant on C++, Java, and Internet programming for major corporations, universities, and organizations. Cay is also the author of the classic Core Java™ books.

Excerpt. © Reprinted by permission. All rights reserved.

When we heard about JavaServer Faces (JSF) at the 2002 JavaOne conference, we were very excited. Both of us had extensive experience with client-side Java programming, and had lived to tell the tale—David in Graphic Java™, and Cay in Core Java™, both published by Sun Microsystems Press. When we first tried web programming with servlets and JavaServer Pages (JSP), we found it to be rather unintuitive and tedious. JavaServer Faces promised to put a friendly face in front of a web application, allowing programmers to think about text fields and menus instead of fretting over page flips and request parameters. Each of us proposed a book project to the publisher, who promptly suggested that we should jointly write the Sun Microsystems Press book on this technology.

It took the JSF Expert Group (of which David was a member) until 2004 to release the JSF 1.0 specification and reference implementation. A bug fix 1.1 release emerged shortly afterwards, and an incremental 1.2 release added a number of cleanups and convenience features in 2006.

JSF is now the preeminent server-side Java web framework, and it has fulfilled most of its promises. You really can design web user interfaces by putting components on a form and linking them to Java objects, without having to mix code and markup. A strong point of JSF is its extensible component model, and a large number of third-party components have become available. The flexible design of the framework has allowed it to grow well and accommodate new technologies such as Ajax. The framework was designed for tool support, and usable drag-and-drop GUI builders have finally emerged. And finally, unlike competing technologies that let you tumble down a deep cliff once you step beyond the glitz, JSF supports the hard stuff—separation of presentation and business logic, navigation, connections with external services, and configuration management.

We are still excited about JSF, and we hope you will share this excitement when you learn how this technology makes you a more effective web application developer.

About This Book

This book is suitable for web developers whose main focus is user interface design, as well as for programmers who implement reusable components for web applications. This is in stark contrast to the official JSF specification, a dense and pompously worded document whose principal audience is framework implementors, as well as long-suffering book authors.

The first half of the book, extending through Chapter 6, focuses on the JSF tags. These tags are similar to HTML form tags. They are the basic building blocks for JSF user interfaces. No programming is required for use of the tags. We assume only basic HTML skills for web pages and standard Java programming for the business logic.

The first part of the book covers these topics:

  • Setting up your programming environment (Chapter 1)
  • Connecting JSF tags to application logic (Chapter 2)
  • Navigating between pages (Chapter 3)
  • Using the standard JSF tags (Chapters 4 and 5)
  • Converting and validating input (Chapter 6)

Starting with Chapter 7, we begin JSF programming in earnest. You will learn how to perform advanced tasks, and how to extend the JSF framework. Here are the main topics of the second part:

  • Event handling (Chapter 7)
  • Including common content among multiple pages (Chapter 8)
  • Implementing custom components, converters, and validators
  • (Chapter 9)
  • Connecting to databases and other external services (Chapter 10)
  • Ajax (Chapter 11)
  • Open source technologies, with a focus on Facelets, Seam, and Shale (Chapter 12)

We end the book with a chapter that aims to answer common questions of the form “How do I . . . ” (see Chapter 13). We encourage you to have a peek at that chapter as soon as you become comfortable with the basics of JSF. There are helpful notes on debugging and logging, and we also give you implementation details and working code for features that are missing from JSF, such as file uploads, pop-up menus, and a pager component for long tables.

JSF is built on top of servlets and JSP, but from the point of view of the JSF developer, these technologies merely form the low-level plumbing. While it can’t hurt to be familiar with other web technologies such as servlets, JSP, or Struts, we do not assume any such knowledge.

Required Software

All software that you need for this book is freely available. You need the Java Software Development Kit from Sun Microsystems and an application server that supports JSF, such as the excellent open source GlassFish project. The software runs identically on Linux, Mac OS X, Solaris, and Windows. We used Java 5 and GlassFish on both Linux and Mac OS X to develop the code examples in the book.

If you are looking for a development environment that supports JSF development, we can heartily recommend the freely available NetBeans IDE. Good JSF support for Eclipse is available from several vendors that sell Eclipse enhancements.

Web Support

The web page for this book is http://corejsf.com. It contains

  • The source code for all examples in this book
  • Useful reference material that we felt is more effective in browseable form than in print
  • A list of known errors in the book and the code
  • A form for submitting corrections and suggestions

"About this title" may belong to another edition of this title.

  • PublisherPearson P T R
  • Publication date2007
  • ISBN 10 0131738860
  • ISBN 13 9780131738867
  • BindingPaperback
  • LanguageEnglish
  • Edition number2
  • Number of pages723
  • Rating
    • 3.50 out of 5 stars
      102 ratings by Goodreads

Buy Used

Condition: Very Good
Former library book; may include...
View this item

FREE shipping within U.S.A.

Destination, rates & speeds

Buy New

View this item

US$ 13.29 shipping from United Kingdom to U.S.A.

Destination, rates & speeds

Search results for Core JavaServer Faces

Stock Image

Horstmann, Cay, Geary, David
Published by Pearson Education, Limited, 2007
ISBN 10: 0131738860 ISBN 13: 9780131738867
Used Softcover

Seller: Better World Books, Mishawaka, IN, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Very Good. Former library book; may include library markings. Used book that is in excellent condition. May show signs of wear or have minor defects. Seller Inventory # 38505452-6

Contact seller

Buy Used

US$ 4.12
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Geary, David M.; Horstmann, Cay S.
Published by Pearson P T R, 2007
ISBN 10: 0131738860 ISBN 13: 9780131738867
Used Softcover

Seller: Austin Goodwill 1101, Austin, TX, U.S.A.

Seller rating 4 out of 5 stars 4-star rating, Learn more about seller ratings

Condition: Acceptable. Get fast and secure shipping knowing your purchase helps empower our community to transform their lives through work. Seller Inventory # 4RZLUO0019DL

Contact seller

Buy Used

US$ 3.38
Convert currency
Shipping: US$ 3.30
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Geary, David M.; Horstmann, Cay S.
Published by Pearson P T R, 2007
ISBN 10: 0131738860 ISBN 13: 9780131738867
Used Softcover

Seller: Austin Goodwill 1101, Austin, TX, U.S.A.

Seller rating 4 out of 5 stars 4-star rating, Learn more about seller ratings

Condition: Good. Get fast and secure shipping knowing your purchase helps empower our community to transform their lives through work. Seller Inventory # 4RZUQ9000R14

Contact seller

Buy Used

US$ 3.38
Convert currency
Shipping: US$ 3.30
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Geary, David; Horstmann, Cay
Published by Prentice Hall PTR, 2007
ISBN 10: 0131738860 ISBN 13: 9780131738867
Used Paperback

Seller: ThriftBooks-Atlanta, AUSTELL, GA, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Good. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 2.35. Seller Inventory # G0131738860I3N00

Contact seller

Buy Used

US$ 7.36
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Geary, David; Horstmann, Cay
Published by Prentice Hall PTR, 2007
ISBN 10: 0131738860 ISBN 13: 9780131738867
Used Paperback

Seller: ThriftBooks-Dallas, Dallas, TX, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Very Good. No Jacket. May have limited writing in cover pages. Pages are unmarked. ~ ThriftBooks: Read More, Spend Less 2.35. Seller Inventory # G0131738860I4N00

Contact seller

Buy Used

US$ 7.36
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Geary, David M.,Horstmann, Cay S.
Published by Pearson P T R, 2007
ISBN 10: 0131738860 ISBN 13: 9780131738867
Used paperback

Seller: HPB-Red, Dallas, TX, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

paperback. Condition: Good. Connecting readers with great books since 1972! Used textbooks may not include companion materials such as access codes, etc. May have some wear or writing/highlighting. We ship orders daily and Customer Service is our top priority! Seller Inventory # S_423460708

Contact seller

Buy Used

US$ 5.00
Convert currency
Shipping: US$ 3.75
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Geary, David; Horstmann, Cay S.
Published by Prentice Hall, 2007
ISBN 10: 0131738860 ISBN 13: 9780131738867
Used Paperback

Seller: Orphans Treasure Box, Champaign, IL, U.S.A.

Seller rating 4 out of 5 stars 4-star rating, Learn more about seller ratings

Paperback. Condition: Good. Ships quickly. Some liquid stain on top few pages and few inside pages. Mild to moderate wear. Orphans Treasure Box sells books to raise money for orphans and vulnerable kids. Seller Inventory # BHO-072917EAG012

Contact seller

Buy Used

US$ 4.94
Convert currency
Shipping: US$ 3.99
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Horstmann, Cay S.
Published by Pearson P T R, 2007
ISBN 10: 0131738860 ISBN 13: 9780131738867
Used Paperback

Seller: WorldofBooks, Goring-By-Sea, WS, United Kingdom

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Very Good. The book has been read, but is in excellent condition. Pages are intact and not marred by notes or highlighting. The spine remains undamaged. Seller Inventory # GOR003131174

Contact seller

Buy Used

US$ 2.22
Convert currency
Shipping: US$ 7.44
From United Kingdom to U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

David M. Geary, Cay S. Horstmann
Published by Pearson P T R, 2007
ISBN 10: 0131738860 ISBN 13: 9780131738867
Used Softcover

Seller: Hamelyn, Madrid, Spain

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Muy bueno. : La segunda edición de 'Core JavaServer Faces' ha sido completamente actualizada para JSF 1.2, incorporando las últimas mejoras y técnicas de desarrollo Ajax. Los autores, David Geary y Cay Horstmann, profundizan en todos los aspectos del desarrollo de JSF 1.2, ofreciendo las mejores prácticas para construir aplicaciones robustas, minimizando la codificación manual y maximizando la productividad. Este libro te ayudará a automatizar los detalles de bajo nivel, descubrir las mejores prácticas de JSF y aprovechar servicios externos como bases de datos y servicios web. EAN: 9780131738867 Tipo: Libros Categoría: Tecnología Título: Core JavaServer Faces Autor: David M. Geary| Cay S. Horstmann Editorial: Pearson P T R Idioma: en Páginas: 723 Formato: tapa blanda. Seller Inventory # Happ-2024-05-20-a15d1aa9

Contact seller

Buy Used

US$ 9.10
Convert currency
Shipping: US$ 11.28
From Spain to U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Geary, David M./ Horstmann, Cay S.
Published by Prentice Hall Ptr, 2007
ISBN 10: 0131738860 ISBN 13: 9780131738867
New Paperback

Seller: Revaluation Books, Exeter, United Kingdom

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Brand New. 2nd edition. 723 pages. 8.75x6.75x1.25 inches. In Stock. Seller Inventory # 0131738860

Contact seller

Buy New

US$ 41.32
Convert currency
Shipping: US$ 13.29
From United Kingdom to U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

There are 2 more copies of this book

View all search results for this book