Articoli correlati a Programming Jakarta Struts

Cavaness, Chuck Programming Jakarta Struts ISBN 13: 9780596003289

Programming Jakarta Struts - Brossura

 
9780596003289: Programming Jakarta Struts

Sinossi

This guide offers a single-source reference for building enterprise web applications from bottom to top. This new title offers developers top-quality information and advice that goes way beyond the Struts on-line documentation. It covers: an overview of the concepts involved in writing web applications; detailed installation and configuration instructions to get Struts up and running quickly; a discussion of how Struts implements the Model-View-Controller pattern, and how to interface with that pattern in your own applications; JSP and Jakarta Tag Libraries for authoring complex Web pages; logging, validation, and exception handling with Struts; using the new Struts template framework, Tiles; and writing internationalization and localization code using Struts.

Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.

L'autore

Chuck Cavaness is a graduate from Georgia Tech with degrees in computer engineering and computer science, has built Java-based enterprise systems in the healthcare, banking, and B2B sectors. Working at an Internet company to design and develop software architecture, Chuck has spent many frustrating hours figuring out the dos and the don'ts of web applications. With each enterprise system he's developed, Chuck has learned several valuable lessons about building "real-world" web applications, information that he's made available to developers who haven't had the opportunity to work on large systems. Chuck is the co-author of Special Edition Using Java 1.3 and Special Edition Using EJB 2.0, both available from QUE.

Contenuti

Dedication; Preface; Organization; Conventions Used in This Book; Comments and Questions; Acknowledgments; Chapter 1: Introduction; 1.1 A Brief History of the Web; 1.2 What Are Java Servlets?; 1.3 JavaServer Pages; 1.4 JSP Model 1 and Model 2 Architectures; 1.5 Why Is Model-View-Controller So Important?; 1.6 What Is a Framework?; 1.7 Creation of the Struts Framework; 1.8 Alternatives to Struts; Chapter 2: Inside the Web Tier; 2.1 An Architecture Overview; 2.2 The HTTP Request/Response Phase; 2.3 Struts and Scope; 2.4 Using URL Parameters; 2.5 Forward Versus Redirect; Chapter 3: Overview of the Struts Framework; 3.1 A Banking Account Example; 3.2 Looking at the Big Picture; 3.3 Struts Controller Components; 3.4 Struts Model Components; 3.5 Struts View Components; 3.6 Multiple Application Support; 3.7 Summary; Chapter 4: Configuring Struts Applications; 4.1 The Storefront Application; 4.2 What Is a Web Application?; 4.3 The Web Application Directory Structure; 4.4 The Web Application Deployment Descriptor; 4.5 Configuring the web.xml File for Struts; 4.6 The Struts Configuration File; 4.7 The org.apache.struts.config Package; 4.8 The Digester Component; 4.9 The Struts Console Tool; 4.10 Reloading the Configuration Files; Chapter 5: Struts Controller Components; 5.1 The Controller Mechanism; 5.2 The Utilities Classes; Chapter 6: Struts Model Components; 6.1 The “M” in MVC; 6.2 What Is a Business Object?; 6.3 Persistence; 6.4 What Does Struts Offer for the Model?; 6.5 Building the Storefront Model; Chapter 7: Struts View Components; 7.1 What Is a View?; 7.2 What Are ActionForms?; 7.3 Using ActionErrors; 7.4 Performing Presentation Validation; 7.5 Using the DynaActionForm Class; 7.6 Looking Ahead to JavaServer Faces; Chapter 8: JSP Custom Tag Libraries; 8.1 Custom Tags Overview; 8.2 Tag Libraries Included with Struts; 8.3 Using JavaBeans with Struts Tags; 8.4 Struts HTML Tags; 8.5 Logic Tags; 8.6 Bean Tags; 8.7 Template Tags; 8.8 Nested Tags; 8.9 Other Useful Tag Libraries; 8.10 The JSP Standard Tag Library (JSTL); Chapter 9: Extending the Struts Framework; 9.1 What Are Extension Points?; 9.2 General Extension Points; 9.3 Controller Extension Points; 9.4 Extending View Components; 9.5 Extending Model Components; 9.6 Downsides to Extending the Framework; Chapter 10: Exception Handling; 10.1 Java Exception Handling; 10.2 System Versus Application Exceptions; 10.3 Using Chained Exceptions; 10.4 Exception Handling Provided by Struts; 10.5 Tying Up the Loose Ends; 10.6 Conclusion; Chapter 11: The Validator Framework; 11.1 The Need for a Validation Framework; 11.2 Installing and Configuring the Validator; 11.3 Using an ActionForm with the Validator; 11.4 Creating Your Own Validation Rules; 11.5 The Validator and JSP Custom Tags; 11.6 Internationalizing the Validation; 11.7 Using the Validator Outside of Struts; Chapter 12: Internationalization and Struts; 12.1 What Is Internationalization?; 12.2 Support for I18N in Java; 12.3 Internationalizing Your Struts Applications; 12.4 Exception Handling and Internationalization; Chapter 13: Struts and Enterprise JavaBeans; 13.1 Implementing the Storefront Service Using EJB; 13.2 Interfacing Struts to EJB; 13.3 Conclusion; Chapter 14: Using Tiles; 14.1 Understanding Templates; 14.2 Installing and Configuring Tiles; 14.3 Overview of Tiles; 14.4 The Tiles Tag Library; 14.5 Using Definitions; 14.6 Internationalization Support with Tiles; Chapter 15: Logging in a Struts Application; 15.1 Logging in a Web Application; 15.2 Using the Servlet Container for Logging; 15.3 Jakarta Commons Logging; 15.4 Using the log4j Package; 15.5 Using Commons Logging in JSP Pages; 15.6 The Performance Impact of log4j; 15.7 Third-Party log4j Extensions; 15.8 Java 1.4 Logging API; Chapter 16: Packaging Your Struts Application; 16.1 To Package or Not to Package; 16.2 Deciding How to Package Your Application; 16.3 Packaging the Application as a WAR File; 16.4 Building Your Struts Applications with Ant; 16.5 Creating an Automated Build Environment; 16.6 Restarting Your Server Remotely; Chapter 17: Addressing Performance; 17.1 What Is Good Performance?; 17.2 Performance Versus Load Testing; 17.3 Performance- and Stress-Testing Tools; 17.4 Testing the Storefront Application; 17.5 Performance and Scalability Gotchas; Changes Since Struts 1.0; ActionServlet and RequestProcessor; Modifications to the Struts Action Class; Changes to web.xml and struts-config.xml; New Features of Struts 1.1; The Struts Validator; Change to Commons Logging; Removal of Admin Actions; Deprecation of the GenericDataSource; Dependency on Commons Projects; Downloading and Installing Struts; The Binary Versus Source Distributions; Tips on Installing Struts in Tomcat; Tips on Installing Struts in WebLogic; Tips on Installing Struts in WebSphere; Tips on Installing Struts in JRun; Resources; The Struts Mailing Lists; The Struts Resource Web Page; Validator Site; Tiles Site; Nested Tags Site; The Struts Console; Easy Struts Project; Colophon;

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

Compra usato

Condizioni: buono
Befriedigend/Good: Durchschnittlich...
Visualizza questo articolo

EUR 4,00 per la spedizione da Germania a Italia

Destinazione, tempi e costi

Altre edizioni note dello stesso titolo

9780596006518: Programming Jakarta Struts

Edizione in evidenza

ISBN 10:  0596006519 ISBN 13:  9780596006518
Casa editrice: O'Reilly, 2004
Brossura

Risultati della ricerca per Programming Jakarta Struts

Foto dell'editore

Chuck Cavaness
Editore: O'Reilly Media, 2002
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Brossura

Da: medimops, Berlin, Germania

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: good. Befriedigend/Good: Durchschnittlich erhaltenes Buch bzw. Schutzumschlag mit Gebrauchsspuren, aber vollständigen Seiten. / Describes the average WORN book or dust jacket that has all the pages present. Codice articolo M00596003285-G

Contatta il venditore

Compra usato

EUR 3,70
Convertire valuta
Spese di spedizione: EUR 4,00
Da: Germania a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Chuck Cavaness
Editore: O'Reilly, 2002
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Softcover

Da: Ammareal, Morangis, Francia

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Softcover. Condizione: Bon. Ancien livre de bibliothèque. Traces d'usure sur la couverture. Edition 2002. Ammareal reverse jusqu'à 15% du prix net de cet article à des organisations caritatives. ENGLISH DESCRIPTION Book Condition: Used, Good. Former library book. Signs of wear on the cover. Edition 2002. Ammareal gives back up to 15% of this item's net price to charity organizations. Codice articolo D-570-919

Contatta il venditore

Compra usato

EUR 4,95
Convertire valuta
Spese di spedizione: EUR 8,00
Da: Francia a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

-
Editore: - -, 2002
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Paperback

Da: Bahamut Media, Reading, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Very Good. This book is in very good condition and will be shipped within 24 hours of ordering. The cover may have some limited signs of wear but the pages are clean, intact and the spine remains undamaged. This book has clearly been well maintained and looked after thus far. Money back guarantee if you are not satisfied. See all our books here, order more than 1 book and get discounted shipping. Codice articolo 6545-9780596003289

Contatta il venditore

Compra usato

EUR 6,59
Convertire valuta
Spese di spedizione: EUR 8,69
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 2 disponibili

Aggiungi al carrello

Foto dell'editore

-
Editore: -, 2002
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Paperback

Da: AwesomeBooks, Wallingford, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Very Good. Programming Jakarta Struts This book is in very good condition and will be shipped within 24 hours of ordering. The cover may have some limited signs of wear but the pages are clean, intact and the spine remains undamaged. This book has clearly been well maintained and looked after thus far. Money back guarantee if you are not satisfied. See all our books here, order more than 1 book and get discounted shipping. Codice articolo 7719-9780596003289

Contatta il venditore

Compra usato

EUR 6,59
Convertire valuta
Spese di spedizione: EUR 8,69
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 2 disponibili

Aggiungi al carrello

Foto dell'editore

Cavaness, Chuck
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Brossura

Da: Better World Books: West, Reno, NV, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Good. Used book that is in clean, average condition without any missing pages. Codice articolo 38730478-75

Contatta il venditore

Compra usato

EUR 3,51
Convertire valuta
Spese di spedizione: EUR 17,59
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Cavaness, Chuck
Editore: O'Reilly Media, 2002
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Brossura

Da: Wonder Book, Frederick, MD, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Good. Good condition. A copy that has been read but remains intact. May contain markings such as bookplates, stamps, limited notes and highlighting, or a few light stains. Codice articolo B04B-01627

Contatta il venditore

Compra usato

EUR 5,44
Convertire valuta
Spese di spedizione: EUR 21,30
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Cavaness, Chuck
Editore: O'Reilly Media, 2002
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Brossura

Da: SecondSale, Montgomery, IL, U.S.A.

Valutazione del venditore 4 su 5 stelle 4 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Good. Item in very good condition! Textbooks may not include supplemental items i.e. CDs, access codes etc. Codice articolo 00072447634

Contatta il venditore

Compra usato

EUR 3,49
Convertire valuta
Spese di spedizione: EUR 29,82
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Cavaness, Chuck
Editore: O'Reilly Media, 2002
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato paperback

Da: HPB Inc., Dallas, TX, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_419209648

Contatta il venditore

Compra usato

EUR 2,98
Convertire valuta
Spese di spedizione: EUR 92,02
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Cavaness, Chuck
Editore: O'Reilly Media, 2002
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato paperback

Da: HPB-Diamond, Dallas, TX, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_437781197

Contatta il venditore

Compra usato

EUR 5,69
Convertire valuta
Spese di spedizione: EUR 92,02
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello