The Jakarta Struts Cookbook Is an Amazing Collection of Code

Total Page:16

File Type:pdf, Size:1020Kb

The Jakarta Struts Cookbook Is an Amazing Collection of Code Jakarta Struts Cookbook By Bill Siggelkow Publisher: O'Reilly Pub Date: February 2005 ISBN: 0-596-00771-X Pages: 526 Table of • Contents • Index • Reviews • Examples The Jakarta Struts Cookbook is an amazing collection of code solutions to Reader common--and uncommon--problems encountered when building web • Reviews applications with the Struts Framework. With solutions to real-world • Errata problems just a few page flips away, this quick, look-up reference is • Academic perfect for independent developers, large development teams, and everyone in between who wishes to use the Struts Framework to its fullest potential. Jakarta Struts Cookbook By Bill Siggelkow Publisher: O'Reilly Pub Date: February 2005 ISBN: 0-596-00771-X Pages: 526 Table of • Contents • Index • Reviews • Examples Reader • Reviews • Errata • Academic Copyright Preface Audience Scope and Organization Assumptions This Book Makes Conventions Used in This Book Using Code Examples Comments and Questions Safari Enabled Acknowledgments Chapter 1. Getting Started: Enabling Struts Development Introduction Recipe 1.1. Downloading Struts Recipe 1.2. Deploying the Struts Example Application Recipe 1.3. Migrating from Struts 1.0 to Struts 1.1 Recipe 1.4. Upgrading from Struts 1.1 to Struts 1.2 Recipe 1.5. Converting JSP Applications to Struts Recipe 1.6. Managing Struts Configuration Files Recipe 1.7. Using Ant to Build and Deploy Recipe 1.8. Generating Struts Configuration Files Using XDoclet Chapter 2. Configuring Struts Applications Introduction Recipe 2.1. Using Plug-ins for Application Initialization Recipe 2.2. Eliminating Tag Library Declarations Recipe 2.3. Using Constants on JSPs Recipe 2.4. Using Multiple Struts Configuration Files Recipe 2.5. Factoring Your Application into Modules Recipe 2.6. Using Multiple Resource Bundles Recipe 2.7. Accessing Message Resources from a Database Recipe 2.8. Selectively Disabling Actions Chapter 3. User Interface Introduction Recipe 3.1. Using JSTL Recipe 3.2. Using the Struts-EL Tags Recipe 3.3. Displaying Indexed Properties Recipe 3.4. Using Indexed Properties on Forms Recipe 3.5. Using Indexed Properties in a JSTL Loop Recipe 3.6. Submitting a Form from an Image Recipe 3.7. Generating JavaScript on the Fly Recipe 3.8. Dynamically Changing Select Options Using JavaScript Recipe 3.9. Generating Dynamic Select List Options Recipe 3.10. Filtering Text Input Recipe 3.11. Generating a Set of Related Radio Buttons Recipe 3.12. Handling Unchecked Checkboxes Recipe 3.13. Handling Date Input Fields Recipe 3.14. Setting Tab Order Recipe 3.15. Generating URLs Recipe 3.16. Adding Request Parameters to a Link Recipe 3.17. Using Frames Recipe 3.18. Defeating Browser Caching Chapter 4. Tables, Sorting, and Grouping Introduction Recipe 4.1. Creating a Horizontal Bar Chart Recipe 4.2. Creating a Vertical Bar Chart Recipe 4.3. Alternating Table Row Colors Recipe 4.4. Sorting HTML Tables Recipe 4.5. Paging Tables Recipe 4.6. Using the Display Tag Library Chapter 5. Processing Forms Introduction Recipe 5.1. Creating Dynamic Action Forms Recipe 5.2. Setting DynaActionForm Initial Values Recipe 5.3. Using a List-Backed Form Property Recipe 5.4. Using a Map-Backed Form Property Recipe 5.5. Lazy Dynamic Action Forms Recipe 5.6. Populating Value Objects from ActionForms Recipe 5.7. Automatically Creating ActionForms Chapter 6. Leveraging Actions Introduction Recipe 6.1. Creating a Base Action Recipe 6.2. Relaying Actions Recipe 6.3. Returning the HTTP Response Recipe 6.4. Writing Thread-Safe Actions Recipe 6.5. Forwarding Requests Recipe 6.6. Including the Response from a Servlet or JSP Recipe 6.7. Changing the Current Module Recipe 6.8. Managing Related Operations from a Central Action Recipe 6.9. Submitting a Form from Localized Form Controls Recipe 6.10. Dispatching to Related Operations with Action Mappings Chapter 7. Execution Control Introduction Recipe 7.1. Performing Tasks at Application Startup Recipe 7.2. Tracking Client Sessions Recipe 7.3. Monitoring User Logins Recipe 7.4. Forwarding Users to Alternate Destinations Recipe 7.5. Forwarding Users to a Module Recipe 7.6. Creating a Wizard-Style Page Flow Recipe 7.7. Determining the Action Based on User Input Recipe 7.8. Using Wildcards in Action Paths Recipe 7.9. Preventing Double Form Submissions Recipe 7.10. Allowing Users to Upload Files Recipe 7.11. Displaying a File from the Server Chapter 8. Input Validation Introduction Recipe 8.1. Reusing Validator Attribute Values Recipe 8.2. Validating Using Regular Expressions Recipe 8.3. Validating Dependent Fields in Struts 1.1 Recipe 8.4. Validating Dependent Fields in Struts 1.2 Recipe 8.5. Validating an Indexed Property Recipe 8.6. Validating Dates Recipe 8.7. Validating Field Equality with a Custom Validator Recipe 8.8. Validating Field Equality in Struts 1.2 Recipe 8.9. Validating Two or More Choices Recipe 8.10. Adding a Custom Validation to a Validator Form Recipe 8.11. Validating a Wizard Form Recipe 8.12. Localizing Validation Rules Chapter 9. Exception and Error Handling Introduction Recipe 9.1. Simplifying Exception Processing in an Action Recipe 9.2. Custom Processing for Declared Exceptions Recipe 9.3. Using Exception Error Codes Recipe 9.4. Using a Global Error Page Recipe 9.5. Reporting Errors and Messages from an Action Recipe 9.6. Formatting Error Messages Chapter 10. Connecting to the Data Introduction Recipe 10.1. Accessing JDBC Data Sources from an Action Recipe 10.2. Displaying Relational Data Recipe 10.3. Mapping SQL Data to Java Objects Recipe 10.4. Integrating Struts with Hibernate Recipe 10.5. Decoupling Your Application from External Services Recipe 10.6. Integrating Spring with Struts Recipe 10.7. Loading XML Data into Your Application Recipe 10.8. Refreshing Application Data Chapter 11. Security Introduction Recipe 11.1. Securing Actions Using a Base Action Recipe 11.2. Checking for User Login on Any Struts Reques t Recipe 11.3. Securing a JSP Page Recipe 11.4. Restricting Actions by Role Recipe 11.5. Implementing "Remember Me" Logins Recipe 11.6. Ensuring Security Across Your Entire Application Recipe 11.7. Allowing a User to Log in Automatically Recipe 11.8. Limiting Access for Specific URLs by Role Recipe 11.9. Letting the Container Manage Security Recipe 11.10. Mixing Application-Managed and Container-Managed Security Recipe 11.11. Configuring Actions to Require SSL Recipe 11.12. Limiting the Size of Uploaded Files Chapter 12. Internationalization Introduction Recipe 12.1. Detecting Browser Language Settings Recipe 12.2. Sharing Message Resources with JSTL Recipe 12.3. Using an Application-Wide Locale Recipe 12.4. Changing Locale on the Fly Recipe 12.5. Creating Localized Messages from an Action Recipe 12.6. Displaying Locale-Specific Text Recipe 12.7. Displaying Locale-Specific Images Recipe 12.8. Supporting Character Sets Recipe 12.9. Localizing Look and Feel Chapter 13. Testing and Debugging Introduction Recipe 13.1. Deploying an Application Automatically Recipe 13.2. Configuring Struts Logging Recipe 13.3. Adding Logging to Your Own Classes Recipe 13.4. Enabling Remote Debugging Recipe 13.5. Troubleshooting JSP Pages Recipe 13.6. Testing Your Actions with Mock Objects Recipe 13.7. Testing Your Actions in the Container Recipe 13.8. Testing Application Functionality Chapter 14. Tiles and Other Presentation Approaches Introduction Recipe 14.1. Reusing a Common Page Layout with Tiles Recipe 14.2. Extending Tile Definitions Recipe 14.3. Displaying Tiles Using a Struts Forward Recipe 14.4. Creating Tabbed Panes Recipe 14.5. Using Tiles for I18N Recipe 14.6. Using Tiles in a Modular Application Recipe 14.7. Reusing a Common Page Layout with SiteMesh Recipe 14.8. Integrating JavaServer Faces with Struts Recipe 14.9. Integrating Struts and Velocity Recipe 14.10. Integrating Struts and XSLT Colophon Index Copyright © 2005 O'Reilly Media, Inc. All rights reserved. Printed in the United States of America. Published by O'Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472. O'Reilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (http://safari.oreilly.com). For more information, contact our corporate/institutional sales department: (800) 998-9938 or [email protected]. Nutshell Handbook, the Nutshell Handbook logo, and the O'Reilly logo are registered trademarks of O'Reilly Media, Inc. The Cookbook series designations, Jakarta Struts Cookbook, the image of the tragopan, and related trade dress are trademarks of O'Reilly Media, Inc. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and O'Reilly Media, Inc. was aware of a trademark claim, the designations have been printed in caps or initial caps. While every precaution has been taken in the preparation of this book, the publisher and authors assume no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. Preface In just a few short years, Struts (now officially called Apache Struts) has grown from a simple idea hatched in Craig McClanahan's head into the most popular framework for building Java©-based web applications. There are other excellent Java-based web application frameworks available; many are newer than Struts, and most have benefited from lessons learned by the Struts users and developers. However, none of these frameworks offer the broad-range of features and functionality for which Struts is known. Just as important, the Struts communityone of the largest in the world of open source developmentactively supports fellow Struts users and drives Struts development. Thestruts-user mailing list often receives upwards of one hundred messages a day. Struts novices, experienced Struts users, and Struts committers are all active on this list.
Recommended publications
  • Web Application Firewall Security Advisory
    Web Application Firewall Web Application Firewall Security Advisory Product Documentation ©2013-2019 Tencent Cloud. All rights reserved. Page 1 of 20 Web Application Firewall Copyright Notice ©2013-2019 Tencent Cloud. All rights reserved. Copyright in this document is exclusively owned by Tencent Cloud. You must not reproduce, modify, copy or distribute in any way, in whole or in part, the contents of this document without Tencent Cloud's the prior written consent. Trademark Notice All trademarks associated with Tencent Cloud and its services are owned by Tencent Cloud Computing (Beijing) Company Limited and its affiliated companies. Trademarks of third parties referred to in this document are owned by their respective proprietors. Service Statement This document is intended to provide users with general information about Tencent Cloud's products and services only and does not form part of Tencent Cloud's terms and conditions. Tencent Cloud's products or services are subject to change. Specific products and services and the standards applicable to them are exclusively provided for in Tencent Cloud's applicable terms and conditions. ©2013-2019 Tencent Cloud. All rights reserved. Page 2 of 20 Web Application Firewall Contents Security Advisory Command Execution Vulnerability in Exchange Server SQL Injection Vulnerability in Yonyou GRP-U8 XXE Vulnerability in Apache Cocoon (CVE-2020-11991) Arbitrary Code Execution Vulnerability in WordPress File Manager Jenkins Security Advisory for September Remote Code Execution Vulnerabilities in Apache Struts 2 (CVE-2019-0230 and CVE-2019- 0233) SQL Injection Vulnerability in Apache SkyWalking (CVE-2020-13921) ©2013-2019 Tencent Cloud. All rights reserved. Page 3 of 20 Web Application Firewall Security Advisory Command Execution Vulnerability in Exchange Server Last updated:2020-12-15 15:20:26 On September 17, 2020, Tencent Security detected that Microsoft issued a security advisory for a command execution vulnerability in Exchange Server (CVE-2020-16875).
    [Show full text]
  • Návrhy Internetových Aplikací
    Bankovní institut vysoká škola Praha Katedra informačních technologií a elektronického obchodování Návrhy internetových aplikací Bakalářská práce Autor: Jiří Nachtigall Informační technologie, MPIS Vedoucí práce: Ing. Jiří Rotschedl Praha Srpen, 2010 Prohlášení Prohlašuji, že jsem bakalářskou práci zpracoval samostatně a s použitím uvedené literatury. V Praze, dne 24. srpna 2010 Jiří Nachtigall Poděkování Na tomto místě bych rád poděkoval vedoucímu práce Ing. Jiřímu Rotschedlovi za vedení a cenné rady při přípravě této práce. Dále bych chtěl poděkovat Ing. Josefu Holému ze společnosti Sun Microsystems za odbornou konzultaci. Anotace Tato práce se zaměřuje na oblast návrhu internetových aplikací. Podrobně popisuje celý proces návrhu počínaje analýzou za použití k tomu určených nástrojů jako je use case a user story. Další částí procesu je návrh technologického řešení, které se skládá z výběru serverového řešení, programovacích technik a databází. Jako poslední je zmíněn návrh uživatelského rozhraní pomocí drátěných modelů a návrh samotného designu internetové aplikace. Annotation This work focuses on web application design. It describes whole process of design in detail. It starts with analysis using some tools especially created for this purpose like use case and user story. Next part of the process is technical design which consists from selection of server solution, programming language and database. And finally user interface prepared using wireframes is mentioned here alongside with graphical design of the web application. Obsah Úvod
    [Show full text]
  • Opensource Webframeworks(Cocoon,Struts
    Webframeworks - Teil 2 Cocoon, Jetspeed, Struts und Co. AUTOR Thomas Bayer ) Schulung ) Orientation in Objects GmbH Veröffentlicht am: 1.4.2003 ABSTRACT Nachdem die Frage geklärt wurde, wann ein Framework eingesetzt werden soll, hilft ) Beratung ) Ihnen der zweite Teil bei der Auswahl eines passenden Frameworks. Bei den im Folgenden beschriebenen Frameworks handelt es sich ausschließlich um Open Source Frameworks. Eine kommerzielle Verwendung ist in den meisten Fällen durch die Apache oder LGPL Lizenz möglich. Diese Frameworks sind nicht nur aus Kostengründen immer häufiger in kommerziellen Projekten zu finden. Ein Framework muss leben, es genügt nicht, dass ein Hersteller von Zeit zu Zeit Updates anbietet. Wichtig für die Entscheidung für ein Framework ist die Gemeinschaft der ) Entwicklung ) Entwickler, die das Framework entwickeln und verwenden. Offene Frameworks besitzen meist eine größere Entwicklergemeinde als hochpreisige Produkte. Für diesen Artikel wurden die Frameworks kategorisiert und Überschriften zugeordnet. Die einzelnen Kategorien wie MVC oder Templating Framework gehen teilweise ) ineinander über und sind schwer zu trennen. Besonders das "Schlagwort" MVC beansprucht fast jedes Framework für sich. Artikel ) Trivadis Germany GmbH Weinheimer Str. 68 D-68309 Mannheim Tel. +49 (0) 6 21 - 7 18 39 - 0 Fax +49 (0) 6 21 - 7 18 39 - 50 [email protected] Java, XML, UML, XSLT, Open Source, JBoss, SOAP, CVS, Spring, JSF, Eclipse 5 MVC FRAMEWORKS Die folgenden Jakarta Projekte stehen in enger Beziehung zu Turbine: • Service Framework Fulcrum Fast alle der hier aufgeführten Frameworks behaupten, die Model • Das verteilte Java Caching System JCS View Controller Architektur zu unterstützen. Ein typischer Vertreter, der sich stark auf MVC fürs Web konzentriert, ist Struts.
    [Show full text]
  • Apache Cocoon 2
    Apache Cocoon 2 Motivación, Introducción y Explicación Saúl Zárrate Cárdenas Apache Cocoon 2: Motivación, Introducción y Explicación por Saúl Zárrate Cárdenas Este documento se cede al dominio público. Historial de revisiones Revisión 0.0 6 de Mayo de 2002 Revisado por: szc Creación Historial de revisiones Revisión 0.1 5 de Junio de 2002 Revisado por: jidl Correcciones de ortografía y marcado Historial de revisiones Revisión 0.2 17 de Julio de 2002 Revisado por: szc Adición de formato de reunión semanal como apéndice y organización de directorios para las imagenes y los fuentes Historial de revisiones Revisión 0.3 31 de agosto de 2002 Revisado por: fjfs Cambio de formato de imágenes a png y correcciones ortográficas Revisión 1.0 18 de Octubre de 2002 Revisado por: jid Conversión a xml, correccion de errores menores de marcado Tabla de contenidos 1. ¿Por qué Cocoon? ..................................................................................................................................1 1.1. Motivación ..................................................................................................................................1 1.2. Entornos de publicación web (Web Publishing Framework) ......................................................2 2. Cocoon ....................................................................................................................................................3 2.1. ¿Qué es Cocoon?.........................................................................................................................3
    [Show full text]
  • Reflexión Académica En Diseño & Comunicación
    ISSN 1668-1673 XXXII • 2017 Año XVIII. Vol 32. Noviembre 2017. Buenos Aires. Argentina Reflexión Académica en Diseño & Comunicación IV Congreso de Creatividad, Diseño y Comunicación para Profesores y Autoridades de Nivel Medio. `Interfaces Palermo´ Reflexión Académica en Diseño y Comunicación Comité Editorial Universidad de Palermo. Lucia Acar. Universidade Estácio de Sá. Brasil. Facultad de Diseño y Comunicación. Gonzalo Javier Alarcón Vital. Universidad Autónoma Metropolitana. México. Centro de Estudios en Diseño y Comunicación. Mercedes Alfonsín. Universidad de Buenos Aires. Argentina. Mario Bravo 1050. Fernando Alberto Alvarez Romero. Pontificia Universidad Católica del C1175ABT. Ciudad Autónoma de Buenos Aires, Argentina. Ecuador. Ecuador. www.palermo.edu Gonzalo Aranda Toro. Universidad Santo Tomás. Chile. [email protected] Christian Atance. Universidad de Lomas de Zamora. Argentina. Mónica Balabani. Universidad de Palermo. Argentina. Director Alberto Beckers Argomedo. Universidad Santo Tomás. Chile. Oscar Echevarría Renato Antonio Bertao. Universidade Positivo. Brasil. Allan Castelnuovo. Market Research Society. Reino Unido. Coordinadora de la Publicación Jorge Manuel Castro Falero. Universidad de la Empresa. Uruguay. Diana Divasto Raúl Castro Zuñeda. Universidad de Palermo. Argentina. Michael Dinwiddie. New York University. USA. Mario Rubén Dorochesi Fernandois. Universidad Técnica Federico Santa María. Chile. Adriana Inés Echeverria. Universidad de la Cuenca del Plata. Argentina. Universidad de Palermo Jimena Mariana García Ascolani. Universidad Comunera. Paraguay. Rector Marcelo Ghio. Instituto San Ignacio. Perú. Ricardo Popovsky Clara Lucia Grisales Montoya. Academia Superior de Artes. Colombia. Haenz Gutiérrez Quintana. Universidad Federal de Santa Catarina. Brasil. Facultad de Diseño y Comunicación José Korn Bruzzone. Universidad Tecnológica de Chile. Chile. Decano Zulema Marzorati. Universidad de Buenos Aires. Argentina. Oscar Echevarría Denisse Morales.
    [Show full text]
  • Apachecon 2004 November 13-17, 2004 Las Vegas Nevada
    ApacheCon 2004 November 13-17, 2004 Las Vegas Nevada CLICK SESSION TITLE FOR PRESENTATION TUTORIALS MONDAY TUESDAY WEDNESDAY T01 Introduction to the Apache Web Server T02 mod_perl 2.0 by Example T03 Apache Portable Runtime 1.0 Tutorial T06 Mangling data with XSLT T07 Test-Driven Apache Module Development T08 Tapestry In Action T09 SpamAssassin Tutorial T10 Everything You Always Wanted to Know About XML Parsing T11 Scalable Internet Architectures T12 Apache Derby/Cloudscape: Embed This! T13 Struts: the good, the bad, and the ugly T14 Subversion Tutorial T15 Digging deep into XML Schema with Apache XMLBeans T16 PHP Security T17 Taming Apache Cocoon T18 Lucene in Action Search Next Help ApacheCon 2004 November 13-17, 2004 Las Vegas Nevada CLICK SESSION TITLE FOR PRESENTATION TUTORIALS MONDAY TUESDAY WEDNESDAY MO01 Behind the Scenes of the Apache Software Foundation MO02 Apache 2.0 on Windows MO03 The State of Apache Geronimo MO04 Advanced Topics in Module Design: Threadsafety and Portability MO05 The Incubator: Starting a Successful Apache Open Source Project MO06 Apache authentication MO07 Comparing Web Frameworks: Struts, Spring MVC, WebWork, Tapestry & JSF MO08 WebDAV and Apache MO09 New and upcoming features in SpamAssassin v3 MO10 What's so great about Apache 2.0? MO11 Embedding Tomcat 5 into Applications Servers MO12 Logging and Configuration - Demystifying the banes of App development MO13 Storing SpamAssassin User Data in SQL Databases MO14 Shoehorning Apache Onto Your Box: System Sizing Tips MO15 Highly available web sites with Tomcat
    [Show full text]
  • Working with XSP in Apache Cocoon 2
    Working with XSP in Apache Cocoon 2 Presented by developerWorks, your source for great tutorials ibm.com/developerWorks Table of Contents If you're viewing this document online, you can click any of the topics below to link directly to that section. 1. Tutorial introduction.................................................... 2 2. XSP concepts........................................................... 6 3. XSP syntax .............................................................. 11 4. Logicsheets ............................................................. 22 5. Creating logicsheets ................................................... 27 6. Summary and resources .............................................. 31 Working with XSP in Apache Cocoon 2 Page 1 of 32 ibm.com/developerWorks Presented by developerWorks, your source for great tutorials Section 1. Tutorial introduction Who should take this tutorial? This tutorial is the second in a series of tutorials on Apache Cocoon 2. It introduces XML Server Pages (XSP), the Cocoon technology for generating dynamic XML content. It is designed to build on the concepts described in the first tutorial, Introducing Cocoon 2; it is therefore recommended that you complete the previous tutorial before progressing further. This tutorial is based on Cocoon 2. While XSP was present in Cocoon 1, architectural differences mean that the majority of the examples are not applicable to that version. It is assumed that you are familiar with Java Web development frameworks such as Java Servlets and Java Server Pages (JSP). Where appropriate, parallels are drawn between concepts in these technologies and XSP. This tutorial will be of interest primarily to developers who have progressed beyond the basic features of Cocoon 2 and want to learn how to add dynamic data to their XML documents to create richer Web sites. The tutorial is also relevant for developers who need to integrate Cocoon 2 with existing data sources and/or APIs to publish their data in multiple formats over the Internet.
    [Show full text]
  • Using Cocoon, WML, and Xmlforms
    Using Cocoon, WML, and XMLForms Presented by developerWorks, your source for great tutorials ibm.com/developerWorks Table of Contents If you're viewing this document online, you can click any of the topics below to link directly to that section. 1. Before you start......................................................... 2 2. Getting started with Cocoon.......................................... 3 3. Cocoon processing model, sitemap, and pipelines............... 4 4. Cocoon and HTML ..................................................... 7 5. Cocoon and WML ...................................................... 11 6. Cocoon, XMLForms, and WML ...................................... 14 7. Summary and resources .............................................. 19 Using Cocoon, WML, and XMLForms Page 1 of 19 ibm.com/developerWorks Presented by developerWorks, your source for great tutorials Section 1. Before you start About this tutorial This tutorial teaches you how to develop applications using Cocoon, Wireless Markup Language (WML), and XMLForms. The course is intended for developers and technical managers who want to get an overview of Cocoon and understand how to use Cocoon for application development. Prerequisites To use this tutorial, you should be familiar with basic Java programming, WML, XML, and XSLT. About the authors Vivek Malhotra is a Subject Matter Expert on Wireless Technologies who is based in the Washington D.C. area. Vivek has several years of experience developing and implementing wireless applications and has spoken on expert panels focusing on the wireless industry. You can reach him at [email protected] for any questions you might have about the content of this tutorial. Roman Vichr is senior architect at DDLabs, an e-commerce and EAI consulting company. During the past nine years, his focus has been on database management for client/server and Web applications development.
    [Show full text]
  • Advanced Webapplications Using
    Advanced WebApplications using Reinhard Pötz, Apache Cocoon Comitter [email protected] http://www.poetz.cc CocoonDay, 2003-11-18, Vienna Goals give an overview how to implement Web Applications with Cocoon2 show design patterns focus on the Cocoon Control Flow no details on related aspects but hints after this presentation you should have a starting point for your first application using the Cocoon Control Flow Demo application Thinking in layers ... goals easily maintainable reuseable reached by ... separation of data model enforces view layer clear contracts application flow Page flow city hotel personal data user older user younger than 18 age than 18 car rentals summary Data model Hotel User Car rental City Order database View layer Implementing the Flow layer distributed over all pages page flow is embedded in the hard wired links between the pages (often used in PHP/ASP/JSP applications) hard to understand spathetti code, not maintainable, sideeffects MVC (model view controller) the controller is used to process requests and to select the views (e.g. implemented by the Struts framework or solutions based on Actions in Cocoon) application is fragemented and often it is difficult to understand the logic explicit state handling MVC+ page flow is described as a sequential program using continuations (e.g. Cocoon Advanced Control Flow – using Flowscript) very easy to understand the page flow implicit state handling (continuations) Flowscript – Integration into the Cocoon world [1] <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0"> <map:flow language="javascript"> <map:script src="flow.js"/> </map:flow> <map:pipelines> <map:pipeline> <map:match pattern="booking.html"> <map:call function="booking"/> </map:match> </map:pipeline> </map:sitemap> Flowscript – Example (flow.js) function booking() { ..
    [Show full text]
  • Basic Web Application Development with Apache Cocoon 2.1
    Basic web application development with Apache Cocoon 2.1 Jasha Joachimsthal ([email protected]) Jeroen Reijn ([email protected]) 4 May 2007 Amsterdam, The Netherlands Basic web application development with Apache Cocoon Are you using Cocoon? Basic web application development with Apache Cocoon Agenda · What is Cocoon? · A bit of history · Cocoon basics · Demo · Why Cocoon? · Future of Cocoon · Q&A Basic web application development with Apache Cocoon What is Cocoon all about? · Web development framework · Java & XML · Separation of Concerns (SoC) · Content transformation · Dynamic multi-channel publishing · Inter-operability with other Java projects (Lucene, FOP, Spring, Hibernate, etc.) Basic web application development with Apache Cocoon History · Cocoon 1 ± Started in Jan. 1999 by Stefano Mazzocchi ± Simple servlet for XSL styling of XML · Cocoon 2 ± Rewrite for performance and scalability ± More than just XSL transformations Basic web application development with Apache Cocoon Connectivity Collect data from multiple resources · Filesystem · SOAP webservice · LDAP · Databases (XML, SQL, Object) · WebDAV · XML feed If that©s not enough, use your current code in Cocoon from · JSF · JSP Basic web application development with Apache Cocoon Connectivity Basic web application development with Apache Cocoon Cocoon basics · Sitemap · Forms framework · Flow · Caching Basic web application development with Apache Cocoon Sitemap · XML configuration file · Request handling · Where everything comes together Basic web application development with Apache
    [Show full text]
  • New Riders Cocoon Building XML Applications.Pdf
    Cocoon: Building XML Applications Matthew Langham Carsten Ziegeler Publisher: New Riders Publishing First Edition July 19, 2002 ISBN: 0-7357-1235-2, 504 pages Front Matter Cocoon: Building XML Applications is a comprehensive hands-on guide to Table of Contents the Apache open source project, Cocoon. Cocoon is an XML publishing About the Author platform already being used by companies such as Hewlett Packard and Examples institutions such as NASA to build their next generation of Internet architectures. Developers, administrators and managers will find this detailed resource an invaluable tool whether you are looking for introductory information on XML/XSL technologies, starting out with the open source platform or seeking a guide to extending Cocoon with additional components. This book combines the knowledge of a key Cocoon developer with the experience of someone who has been building and writing about Internet applications since the early 1990’s. It begins by explaining the advantages of XML, then guides the reader through the process of setting up Cocoon and details the architecture from a user’s as well as a developer’s point of view. The varied examples, from the typical Hello World program to a complete news portal also help to provide an insight into applying open source software to "real world" problems. A detailed reference section documents the various components available in Cocoon and provides the developer with the necessary API documentation. 1 TEAM FLY PRESENTS Table of Content Table of Content ............................................................................................................
    [Show full text]
  • Cocoon 3.0 ALPHA - Reference Documentation
    Cocoon 3.0 ALPHA - Reference Documentation Apache Cocoon 3.0 ALPHA Reinhard Pötz (Indoqa Software Design und Beratung GmbH) Copyright © 2008 Copies of this document may be made for your own use and for distribution to others, provided that you do not charge any fee for such copies and further provided that each copy contains this Copyright Notice, whether distributed in print or electronically. 1. Introduction ..................................................................................................................................1 1.1. Why Cocoon 3 - Motivation ................................................................................................ 1 1.2. Relationship to previous versions ........................................................................................ 1 1.3. Requirements ..................................................................................................................... 1 2. Pipelines ......................................................................................................................................2 2.1. What is a pipeline? ............................................................................................................. 2 2.1.1. Linear pipelines ....................................................................................................... 2 2.1.2. Pipelines by example ............................................................................................... 2 2.2. Pipeline implementations ...................................................................................................
    [Show full text]