Articoli correlati a Programming Jakarta Struts

Cavaness, Chuck Programming Jakarta Struts ISBN 13: 9780596003289

Programming Jakarta Struts - Brossura

 
9780596003289: Programming Jakarta Struts
Vedi tutte le copie di questo ISBN:
 
 

Web tier frameworks have really taken off in the past year or so. Developers who used to spend hours and hours writing low-level features have realized the enormous benefits of using well-written frameworks to build the presentation tier so they can get to coding the "good stuff", the business logic at the core of the program.The Struts Framework, originally created by Craig R. McClanahan and donated to the Apache Software Foundation's Jakarta project in 2000, has become one of the most popular presentation frameworks for building web applications with Java Servlet and JavaServer Pages (JSP) technology. It encourages application architecture based on the Model-View-Controller (MVC) design paradigm, colloquially known as the Model 2 approach.As popular as Struts is becoming, the online documentation is inadequate, focusing on the most basic functionality and leaving out information crucial to developers writing today's complex web applications. O'Reilly's Programming Jakarta Struts was written by Chuck Cavaness after his internet company decided to adopt the framework, then spent months really figuring out how to use it to its fullest potential. He calls the books, "the culmination of lessons learned (the hard way) during the building of our application."Readers will benefit from the real-world, "this is how to do it" approach Cavaness takes to developing complex enterprise applications using Struts, and his focus on the 1.1 version of the Framework makes this the most up-to-date book available.Programming Jakarta Struts covers:

  • An overview of the concepts involved in writing web applications
  • Detailed installation and configuration instructions to get Struts up and running quickly
  • A thorough 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.
  • Writing internationalization and localization code using Struts
  • Practical, real-world best practices for web applications
Craig McClanahan, originator of Struts, says of the book, "One thing a lot of open source packages lack is a comprehensive guide to all of the features -- something that goes far enough past "hello, world" to get you into solving real application design problems, and it looks like you've hit just the right level for a lot of people."

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.

  • EditoreO'Reilly Media
  • Data di pubblicazione2002
  • ISBN 10 0596003285
  • ISBN 13 9780596003289
  • RilegaturaCopertina flessibile
  • Numero di pagine445
  • Valutazione libreria
Compra usato
Condizioni: buono
All orders are dispatched the following... Scopri di più su questo articolo

Spese di spedizione: EUR 5,82
Da: Regno Unito a: Italia

Destinazione, tempi e costi

Aggiungere al carrello

Altre edizioni note dello stesso titolo

9780596006518: Programming Jakarta Struts

Edizione in evidenza

ISBN 10:  ISBN 13:  9780596006518
Casa editrice: Oreilly & Associates Inc, 2004
Brossura

  • 9784873111353: プログラミングJakarta Struts

    Rilegato

I migliori risultati di ricerca su AbeBooks

Foto dell'editore

Cavaness, Chuck
Editore: O'Reilly (2002)
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato paperback Quantità: 1
Da:
Goldstone Books
(Llandybie, Regno Unito)
Valutazione libreria

Descrizione libro paperback. Condizione: Good. All orders are dispatched the following working day from our UK warehouse. Established in 2004, we have over 500,000 books in stock. No quibble refund if not completely satisfied. Codice articolo mon0006563910

Informazioni sul venditore | Contatta il venditore

Compra usato
EUR 4,05
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 5,82
Da: Regno Unito a: Italia
Destinazione, tempi e costi
Foto dell'editore

Chuck Cavaness
Editore: O'Reilly Media (2002)
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Paperback Quantità: 3
Da:
WorldofBooks
(Goring-By-Sea, WS, Regno Unito)
Valutazione libreria

Descrizione libro Paperback. Condizione: 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. Codice articolo GOR001037229

Informazioni sul venditore | Contatta il venditore

Compra usato
EUR 1,86
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 10,50
Da: Regno Unito a: Italia
Destinazione, tempi e costi
Foto dell'editore

Cavaness, Chuck
Editore: - (2002)
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Paperback Quantità: 1
Da:
AwesomeBooks
(Wallingford, Regno Unito)
Valutazione libreria

Descrizione libro 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

Informazioni sul venditore | Contatta il venditore

Compra usato
EUR 4,83
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 8,74
Da: Regno Unito a: Italia
Destinazione, tempi e costi
Foto dell'editore

Cavaness, Chuck
Editore: - - (2002)
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Paperback Quantità: 1
Da:
Bahamut Media
(Reading, Regno Unito)
Valutazione libreria

Descrizione libro 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

Informazioni sul venditore | Contatta il venditore

Compra usato
EUR 4,83
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 8,74
Da: Regno Unito a: Italia
Destinazione, tempi e costi
Foto dell'editore

Chuck Cavaness
Editore: O'Reilly (2002)
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Softcover Quantità: 1
Da:
Ammareal
(Morangis, Francia)
Valutazione libreria

Descrizione libro 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

Informazioni sul venditore | Contatta il venditore

Compra usato
EUR 5,50
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 10,00
Da: Francia a: Italia
Destinazione, tempi e costi
Foto dell'editore

Cavaness, Chuck
Editore: O'Reilly Media (2002)
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Brossura Quantità: 2
Da:
Wonder Book
(Frederick, MD, U.S.A.)
Valutazione libreria

Descrizione libro 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 J05B-01231

Informazioni sul venditore | Contatta il venditore

Compra usato
EUR 5,52
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 23,12
Da: U.S.A. a: Italia
Destinazione, tempi e costi
Foto dell'editore

Cavaness, Chuck
Editore: O'Reilly Media (2002)
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Brossura Quantità: 1
Da:
Wonder Book
(Frederick, MD, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: Very Good. Very Good condition. A copy that may have a few cosmetic defects. May also contain a few markings such as an owner's name, short gifter's inscription or light stamp. Codice articolo V03D-01400

Informazioni sul venditore | Contatta il venditore

Compra usato
EUR 5,52
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 23,12
Da: U.S.A. a: Italia
Destinazione, tempi e costi
Foto dell'editore

Cavaness, Chuck
Editore: O'Reilly Media (2002)
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Brossura Quantità: 1
Da:
SecondSale
(Montgomery, IL, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: Good. Item in good condition. Textbooks may not include supplemental items i.e. CDs, access codes etc. Codice articolo 00045305276

Informazioni sul venditore | Contatta il venditore

Compra usato
EUR 4,26
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 32,37
Da: U.S.A. a: Italia
Destinazione, tempi e costi
Foto dell'editore

Cavaness, Chuck
Editore: O'Reilly Media (2002)
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato paperback Quantità: 1
Da:
Green Street Books
(San Jose, CA, U.S.A.)
Valutazione libreria

Descrizione libro paperback. Condizione: Good. . Codice articolo 5DY0000001KZ_ns

Informazioni sul venditore | Contatta il venditore

Compra usato
EUR 3,26
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 50,87
Da: U.S.A. a: Italia
Destinazione, tempi e costi
Foto dell'editore

Cavaness, Chuck
Editore: O'Reilly Media (2002)
ISBN 10: 0596003285 ISBN 13: 9780596003289
Antico o usato Paperback Quantità: 1
Da:
HPB Inc.
(Dallas, TX, U.S.A.)
Valutazione libreria

Descrizione libro 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_358109231

Informazioni sul venditore | Contatta il venditore

Compra usato
EUR 4,76
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 99,88
Da: U.S.A. a: Italia
Destinazione, tempi e costi