Jakarta Struts Cookbook
Home > Computing and Information Technology > Computer programming / software engineering > Web programming > Jakarta Struts Cookbook: (Cookbooks Ser.)
Jakarta Struts Cookbook: (Cookbooks Ser.)

Jakarta Struts Cookbook: (Cookbooks Ser.)


     0     
5
4
3
2
1



Out of Stock


Notify me when this book is in stock
X
About the Book

The Jakarta Struts Framework is a popular open source platform for building web applications from top to bottom with Java. While this popularity has led to a wealth of online and in-print documentation, developers still find themselves faced with a number of common tasks that are not clearly and succinctly explained. In these situations, programmers can now turn to the Jakarta Struts Cookbook an amazing collection of code solutions to common--and uncommon--problems encountered when working with the Struts Framework. Among many other recipes, this book explains how to: * display data in complex HTML tables * use JSP, the JSTL, and JavaScript in your user interface * define static and dynamic action forms * validate data and respond to errors * use Logging, Validation, and Exception Handling * integrate Struts with persistence frameworks like Hibernate and iBATIS This look-up reference is just what today's time-pressed developers need. With solutions to real-world problems just a few page flips away, information is instantly available. And while the book's solutions focuse on getting to the point, each recipe's discussion section imparts valuable concept and insight from a Struts veteran. The Jakarta Struts Cookbook is perfect for independent developers, large development teams, and everyone in between who wishes to use the Struts Framework to its fullest potential. Plus, it s completely up-to-date with the latest versions of Framework, so readers can be sure the information is viable.

Table of Contents:
Preface 1. Getting Started: Enabling Struts Development; 1.1 Downloading Struts 1.2 Deploying the Struts Example Application; 1.3 Migrating from Struts 1.0 to Struts 1.1 1.4 Upgrading from Struts 1.1 to Struts 1.2 1.5 Converting JSP Applications to Struts; 1.6 Managing Struts Configuration Files 1.7 Using Ant to Build and Deploy 1.8 Generating Struts Configuration Files Using XDoclet; 2. Configuring Struts Applications 2.1 Using Plug-ins for Application Initialization 2.2 Eliminating Tag Library Declarations; 2.3 Using Constants on JSPs 2.4 Using Multiple Struts Configuration Files 2.5 Factoring Your Application into Modules 2.6 Using Multiple Resource Bundles 2.7 Accessing Message Resources from a Database 2.8 Selectively Disabling Actions 3. User Interface; 3.1 Using JSTL 3.2 Using the Struts-EL Tags 3.3 Displaying Indexed Properties 3.4 Using Indexed Properties on Forms 3.5 Using Indexed Properties in a JSTL Loop 3.6 Submitting a Form from an Image 3.7 Generating JavaScript on the Fly 3.8 Dynamically Changing Select Options Using JavaScript 3.9 Generating Dynamic Select List Options 3.10 Filtering Text Input 3.11 Generating a Set of Related Radio Buttons 3.12 Handling Unchecked Checkboxes; 3.13 Handling Date Input Fields 3.14 Setting Tab Order; 3.15 Generating URLs 3.16 Adding Request Parameters to a Link; 3.17 Using Frames 3.18 Defeating Browser Caching 4. Tables, Sorting, and Grouping 4.1 Creating a Horizontal Bar Chart; 4.2 Creating a Vertical Bar Chart 4.3 Alternating Table Row Colors; 4.4 Sorting HTML Tables 4.5 Paging Tables 4.6 Using the Display Tag Library 5. Processing Forms 5.1 Creating Dynamic Action Forms 5.2 Setting DynaActionForm Initial Values 5.3 Using a List-Backed Form Property 5.4 Using a Map-Backed Form Property; 5.5 Lazy Dynamic Action Forms 5.6 Populating Value Objects from ActionForms 5.7 Automatically Creating ActionForms 6. Leveraging Actions 6.1 Creating a Base Action 6.2 Relaying Actions; 6.3 Returning the HTTP Response 6.4 Writing Thread-Safe Actions; 6.5 Forwarding Requests 6.6 Including the Response from a Servlet or JSP 6.7 Changing the Current Module 6.8 Managing Related Operations from a Central Action 6.9 Submitting a Form from Localized Form Controls 6.10 Dispatching to Related Operations with Action Mappings 7. Execution Control 7.1 Performing Tasks at Application Startup 7.2 Tracking Client Sessions 7.3 Monitoring User Logins 7.4 Forwarding Users to Alternate Destinations 7.5 Forwarding Users to a Module 7.6 Creating a Wizard-Style Page Flow 7.7 Determining the Action Based on User Input 7.8 Using Wildcards in Action Paths 7.9 Preventing Double Form Submissions 7.10 Allowing Users to Upload Files 7.11 Displaying a File from the Server 8. Input Validation; 8.1 Reusing Validator Attribute Values 8.2 Validating Using Regular Expressions 8.3 Validating Dependent Fields in Struts 1.1; 8.4 Validating Dependent Fields in Struts 1.2 8.5 Validating an Indexed Property 8.6 Validating Dates 8.7 Validating Field Equality with a Custom Validator 8.8 Validating Field Equality in Struts 1.2 8.9 Validating Two or More Choices 8.10 Adding a Custom Validation to a Validator Form 8.11 Validating a Wizard Form 8.12 Localizing Validation Rules 9. Exception and Error Handling 9.1 Simplifying Exception Processing in an Action 9.2 Custom Processing for Declared Exceptions 9.3 Using Exception Error Codes 9.4 Using a Global Error Page 9.5 Reporting Errors and Messages from an Action 9.6 Formatting Error Messages; 10. Connecting to the Data 10.1 Accessing JDBC Data Sources from an Action 10.2 Displaying Relational Data 10.3 Mapping SQL Data to Java Objects 10.4 Integrating Struts with Hibernate 10.5 Decoupling Your Application from External Services 10.6 Integrating Spring with Struts 10.7 Loading XML Data into Your Application; 10.8 Refreshing Application Data 11. Security 11.1 Securing Actions Using a Base Action 11.2 Checking for User Login on Any Struts Request 11.3 Securing a JSP Page 11.4 Restricting Actions by Role 11.5 Implementing "Remember Me" Logins 11.6 Ensuring Security Across Your Entire Application 11.7 Allowing a User to Log in Automatically 11.8 Limiting Access for Specific URLs by Role 11.9 Letting the Container Manage Security 11.10 Mixing Application-Managed and Container-Managed Security; 11.11 Configuring Actions to Require SSL 11.12 Limiting the Size of Uploaded Files 12. Internationalization 12.1 Detecting Browser Language Settings 12.2 Sharing Message Resources with JSTL; 12.3 Using an Application-Wide Locale 12.4 Changing Locale on the Fly 12.5 Creating Localized Messages from an Action 12.6 Displaying Locale-Specific Text 12.7 Displaying Locale-Specific Images 12.8 Supporting Character Sets 12.9 Localizing Look and Feel 13. Testing and Debugging 13.1 Deploying an Application Automatically 13.2 Configuring Struts Logging 13.3 Adding Logging to Your Own Classes 13.4 Enabling Remote Debugging; 13.5 Troubleshooting JSP Pages 13.6 Testing Your Actions with Mock Objects 13.7 Testing Your Actions in the Container 13.8 Testing Application Functionality 14. Tiles and Other Presentation Approaches 14.1 Reusing a Common Page Layout with Tiles 14.2 Extending Tile Definitions 14.3 Displaying Tiles Using a Struts Forward 14.4 Creating Tabbed Panes 14.5 Using Tiles for I18N; 14.6 Using Tiles in a Modular Application 14.7 Reusing a Common Page Layout with SiteMesh 14.8 Integrating JavaServer Faces with Struts 14.9 Integrating Struts and Velocity 14.10 Integrating Struts and XSLT Index

About the Author :
Bill Siggelkow is an independent consultant specializing in software design, development and technical training. Bill is an active member of the Atlanta Struts User Group and frequently serves as a presenter for the group. With nearly 20 years of development experience, he has designed and developed systems for the manufacturing, energy marketing, e-commerce, and financial service industries. Bill enjoys training and mentoring developers in the art of object-oriented programming and web development. Bill lives in Atlanta, Georgia and has a degree in Industrial Engineering from Georgia Tech.


Best Sellers


Product Details
  • ISBN-13: 9780596007713
  • Publisher: O'Reilly Media
  • Publisher Imprint: O'Reilly Media
  • Height: 235 mm
  • No of Pages: 507
  • Returnable: N
  • Spine Width: 25 mm
  • ISBN-10: 059600771X
  • Publisher Date: 29 Mar 2005
  • Binding: Paperback
  • Language: English
  • Returnable: N
  • Series Title: Cookbooks Ser.
  • Width: 178 mm


Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
Jakarta Struts Cookbook: (Cookbooks Ser.)
O'Reilly Media -
Jakarta Struts Cookbook: (Cookbooks Ser.)
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Jakarta Struts Cookbook: (Cookbooks Ser.)

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!