1. Trang chủ
  2. » Công Nghệ Thông Tin

Tài liệu Practical DWR 2 Projects pptx

570 5.5K 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Cấu trúc

  • Prelims

  • Contents at a Glance

  • Contents

  • Foreword

  • About the Author

  • About the Technical Reviewer

  • About the Illustrator

  • Acknowledgments

  • Introduction

    • An Overview of This Book

    • Obtaining This Book’s Source Code

    • Obtaining Updates for This Book

    • Contacting the Author

  • An Introduction to Ajax, RPC, and Modern RIAs

    • A Brief History of Web Development: The “Classic” Model

      • Dawn of a Whole New World: The PC Era

      • Yet Another Revolution: Enter the Web

    • What’s So Wrong with the Classic Web?

    • Enter Ajax

    • Why Is Ajax a Paradigm Shift? On the Road to RIAs

    • The Flip Side of the Coin

    • Let’s Get to the Good Stuff: Our First Ajax Code, the Manual Way

      • A Quick Postmortem

      • Hey, I Thought This Was Ajax?!?

    • Cutting IN the Middle Man: Ajax Libraries to Ease Our Pain

    • Alternatives to Ajax

    • Hmm, Are We Forgetting Something? What Could It Be? Oh Yeah, DWR!

    • Summary

  • Getting to Know DWR

    • First Things First: Why DWR at All?

    • DWR: RPC on Steroids for the Web

    • DWR Architectural Overview

    • Getting Ready for the Fun: Your DWR Development Environment

    • A Simple Webapp to Get Us Started

      • Getting the Lay of the Land: Directory Structure

      • From Code to Executable: Ant Build Script

      • Application Configuration: web.xml

      • The Markup: index.jsp

      • On the Server Side: MathServlet.java

      • The Workhorse: MathDelegate.java

      • It’s Alive: Seeing It in Action

    • Adding DWR to the Mix

    • The DWR Test/Debug Page

    • Configuring DWR Part 1: web.xml

    • Configuring DWR Part 2: dwr.xml

      • Built-in Creators and Converters

      • The <init> Section

      • The <allow> Section

      • The <signatures> Section

    • Interacting with DWR on the Client

      • Basic Call Syntax

      • Call Metadata Object Approach

      • A Word on Some Funky Syntax

      • Setting Beans on a Remote Object

      • Extended Data Passing to Callbacks

    • Interacting with DWR on the Server

    • DWR Configuration and Other Concepts: The engine.js File

      • Call Batching

    • A Quick Look at util.js, the DWR Utility Package

    • Summary

  • Advanced DWR

    • Locking the Doors: Security in DWR

      • Deny by Default

      • J2EE Security and DWR

        • Securing the DWRServlet

        • Securing Individual Methods

    • When Perfection Is Elusive: Error Handling in DWR Applications

      • Handling Warnings

      • Handling Errors

      • Handling Exceptions

      • Edge Cases: Improper Responses

      • The Mechanics of Handling Exceptional Situations

      • Another Word on Exceptions

    • Help from Elsewhere: Accessing Other URLs

    • Turning the Tables: Reverse Ajax

      • Polling

      • Comet

      • Piggybacking

      • The Code of Reverse Ajax

    • Don’t Go It Alone: Integration with Frameworks and Libraries

      • Spring

      • JSF

      • WebWork/Struts 2

      • Struts “Classic”

      • Beehive

      • Hibernate

    • Something Old, Something New: Annotations

    • Summary

  • InstaMail: An Ajax-Based Webmail Client

    • Application Requirements and Goals

    • Dissecting InstaMail

      • Configuration Files

        • web.xml

        • dwr.xml

      • The Client-Side Code

        • styles.css

        • index.jsp

        • script.js

      • The Server-Side Code

        • OptionsManager.java

        • AddressBookManager.java

        • MailSender.java

        • MailRetriever.java

        • MailDeleter.java

    • Suggested Exercises

    • Summary

  • Share Your Knowledge: DWiki, the DWR-Based Wiki

    • Application Requirements and Goals

      • FreeMarker

      • Apache Derby

      • Spring JDBC

    • Dissecting DWiki

      • Configuration Files

        • Container-Managed Security Configuration

        • web.xml

        • dwr.xml

        • dwiki.properties

      • The Client-Side Code

        • styles.css

        • index.jsp

        • login.jsp

        • loginOk.jsp

        • RolloversClass.js

        • DWikiClass.js

        • FreeMarker Templates

      • The Server-Side Code

        • Config.java

        • DWikiContextListener.java

        • Article.java

        • ArticleComment.java

        • ArticleHistoryItem.java

        • Freemarker.java

        • DatabaseWorker.java

        • ArticleDAO.java

    • Suggested Exercises

    • Summary

  • Remotely Managing Your Files: DWR File Manager

    • Application Requirements and Goals

      • dhtmlx UI Components

      • Jakarta Commons IO

      • Jakarta Commons FileUpload

    • Dissecting Fileman

      • Configuration Files

        • Container-Managed Security Configuration

        • web.xml

        • dwr.xml

      • The Client-Side Code

        • styles.css

        • login.htm

        • loginBad.htm

        • index.jsp

        • uploadFile.jsp

        • downloadFile.jsp

        • Fileman.js

      • The Server-Side Code

        • FileVO.java

        • DirectoryVO.java

        • FileSystemFunctions.java

    • Suggested Exercises

    • Summary

  • Enter the Enterprise: A DWR-Based Report Portal

    • Application Requirements and Goals

      • Spring Dependency Injection (IoC)

      • DataVision

      • Quartz

      • script.aculo.us

      • A Sample Database to Report Against

    • Dissecting RePortal

      • Configuration Files

        • web.xml

        • appConfig.xml

        • dwr.xml

        • spring-beans.xml

      • The RePortal Database

      • The Client-Side Code

        • styles.css

        • A Beacon in the Night: lightbox.css and lightbox.js

        • index.jsp

        • RePortalClass.js

      • The Server-Side Code

        • Config.java

        • ContextListener.java

        • DatabaseWorker.java

        • DataSourceDescriptor.java

        • FavoritesWorker.java

        • GroupDescriptor.java

        • GroupWorker.java

        • ReportDescriptor.java

        • ReportWorker.java

        • UserDescriptor.java

        • UserWorker.java

        • ReportRunner.java

        • ReportScheduleDescriptor.java

        • ReportSchedulingWorker.java

    • Suggested Exercises

    • Summary

  • DWR for Fun and Profit (a DWR Game!)

    • Application Requirements and Goals

      • DWR Annotations

      • Reverse Ajax in Action

      • Anything Else, or Can We Get Goin’ Already?!?

    • Dissecting InMemoria

      • Configuration Files

        • web.xml

      • The Client-Side Code

        • styles.css

        • index.jsp

        • howToPlay.txt

        • InMemoria.js

      • The Server-Side Code

        • GameCore.java

        • OpponentCreator.java

        • Opponent.java

    • Suggested Exercises

    • Summary

  • Timekeeper: DWR Even Makes Project Management Fun!

    • Application Requirements and Goals

      • HSQLDB

      • Hibernate

      • Ext JS

    • Dissecting Timekeeper

      • Configuration Files

        • web.xml

        • dwr.xml

        • hibernate.cfg.xml

        • Project.hbm.xml

        • User.hbm.xml

        • TimesheetItem.hbm.xml

      • The Client-Side Code

        • styles.css

        • index.jsp

        • Timekeeper.js

      • The Server-Side Code

        • Utils.java

        • User.java

        • UserDAO.java

        • Project.java

        • ProjectDAO.java

        • TimesheetItem.java

        • TimesheetDAO.java

    • Suggested Exercises

    • Summary

  • Index

Nội dung

this print for content only—size & color not accurate spine = 1.072" 568 page count EMPOWERING PRODUCTIVITY FOR THE JAVA ™ DEVELOPER Practical DWR 2 Projects Dear Reader, Ajax represents a brave, newish world of web development where coding on the client is just as important as on the server side. Hundreds of libraries exist that purport to make it easier for you, and there’s always the “Do It Yourself” approach. Which route should you take? If you work with Java™ technologies, one choice that stands out is DWR, or Direct Web Remoting. With DWR, JavaScript™-based client code that calls server-side objects works as if it were all running in the same process space. The simplicity and power DWR blends together has few rivals today. In this, the first DWR book to be published, you’ll be introduced to DWR and all it has to offer, including reverse Ajax, XML and annotation-based con- figuration, container-managed security, simple POJO-based development, and greatly simplified client-side coding. You’ll learn by doing as you explore six fully functional applications including the following: • A webmail client for remotely accessing your e-mail accounts • A wiki for collaborative efforts • A file manager for remotely managing your server’s file system • A portal for enterprise reporting needs • A project management/time-tracking system • Even a fun little game! In addition to DWR, you’ll also see how other popular libraries help realize the RIA/Web 2.0 vision, including Spring, Hibernate, dHTMLx, DataVision, Freemarker, and Ext JS. If you’re doing RIA development in Java, DWR is for you, as too is this book! Frank W. Zammetti SCJP, MCSD, MCP, CNA, CIW Associate, author, husband, father, Vorlon Author of Practical Ajax Projects with Java™ Technology Practical JavaScript™, DOM Scripting, and Ajax Projects US $46.99 Shelve in Java Programming User level: Intermediate–Advanced Zammetti DWR 2 Projects THE EXPERT’s VOICE ® IN JAVA ™ TECHNOLOGY Practical DWR 2 Projects CYAN MAGENTA YELLOW BLACK PANTONE 123 C Frank W. Zammetti Foreword by Joe Walker, Creator of DWR Companion eBook Available THE APRESS JAVA™ ROADMAP Pro Ajax and Java™ Frameworks Foundations of Ajax Practical DWR 2 Projects Practical Ajax Projects with Java™ Technology www.apress.com java.apress.com SOURCE CODE ONLINE Companion eBook See last page for details on $10 eBook version ISBN-13: 978-1-59059-941-9 ISBN-10: 1-59059-941-1 9 781590 599419 5 4 6 9 9 Explore the design and construction of six complete, rich Web 2.0 applications utilizing DWR, one of the hottest libraries in the Ajax realm today. Practical www.it-ebooks.info www.it-ebooks.info Frank W. Zammetti Practical DWR 2 Projects 9411FM.qxd 1/2/08 5:20 PM Page i www.it-ebooks.info Practical DWR 2 Projects Copyright © 2008 by Frank W. Zammetti All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system, without the prior written permission of the copyright owner and the publisher. ISBN-13 (pbk): 978-1-59059-941-9 ISBN-10 (pbk): 1-59059-941-1 ISBN-13 (electronic): 978-1-4302-0556-2 ISBN-10 (electronic): 1-4302-0556-3 Printed and bound in the United States of America 9 8 7 6 5 4 3 2 1 Trademarked names may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. Java ™ and all Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc., in the US and other countries. Apress, Inc., is not affiliated with Sun Microsystems, Inc., and this book was written without endorsement from Sun Microsystems, Inc. Lead Editor: Steve Anglin Technical Reviewer: Herman van Rosmalen Editorial Board: Steve Anglin, Ewan Buckingham, Tony Campbell, Gary Cornell, Jonathan Gennick, Kevin Goff, Jonathan Hassell, Matthew Moodie, Joseph Ottinger, Jeffrey Pepper, Ben Renow-Clarke, Dominic Shakeshaft, Matt Wade, Tom Welsh Project Manager: Beth Christmas Copy Editor: Ami Knox Associate Production Director: Kari Brooks-Copony Production Editor: Kelly Winquist Compositor: Dina Quan Proofreader: April Eddy Indexer: Julie Grady Artists: Anthony Volpe, April Milne Cover Designer: Kurt Krames Manufacturing Director: Tom Debolski Distributed to the book trade worldwide by Springer-Verlag New York, Inc., 233 Spring Street, 6th Floor, New York, NY 10013. Phone 1-800-SPRINGER, fax 201-348-4505, e-mail orders-ny@springer-sbm.com, or visit http://www.springeronline.com. For information on translations, please contact Apress directly at 2855 Telegraph Avenue, Suite 600, B er keley , CA 94705. P hone 510-549-5930, fax 510-549-5939, e-mail info@apress.com, or visit http://www.apress.com. The information in this book is distributed on an “as is” basis, without warranty. Although every precau- tion has been taken in the preparation of this work, neither the author(s) nor Apress shall have any liability to any person or entity with r espect to any loss or damage caused or alleged to be caused dir ectly or indirectly by the information contained in this work. The source code for this book is available to readers at http://www.apress.com. 9411FM.qxd 1/2/08 5:20 PM Page ii www.it-ebooks.info Let’s see . . . this is my third book now . . . the first I dedicated to my wife, kids, mom, dad, and John Sheridan for keeping the Shadows off our backs. The second I dedicated to all the animals I’ve eaten, a batch of childhood friends who helped shape my early life, Denny Crane, and my wife and kids once more. So, I’ve covered everyone that counts at least once. So, who to dedicate this one to? Who’s worthy of my adulation and respect? Oh, oh! I know . . . ME! I dedicate this book to ME! OK, fine, I guess I can’t do that. So, I instead dedicate this book to my wife and kids. AGAIN. I dedicate this book to my sister because I just realized I didn’t cover everyone that counts, but now I have, sis! I dedicate this book to the folks at Harmonix and Bungie because Guitar Hero, Rock Band, and Halo just flat-out rule. I need some Dream Theater, Queensryche, Shadow Gallery, Fates Warning, and Enchant to make my life complete though, so get on that, OK guys? And lastly, I dedicate this book to all the alien species we have yet to meet. I just hope those dudes need books on web programming, because my kids eat like you wouldn’t believe! I’ll even take Quatloos! 9411FM.qxd 1/2/08 5:20 PM Page iii www.it-ebooks.info 9411FM.qxd 1/2/08 5:20 PM Page iv www.it-ebooks.info Contents at a Glance Foreword . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xiii About the Author . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xv About the Technical Reviewer. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xvii About the Illustrator. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xix Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxi Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxiii PART 1 ■ ■ ■ Setting the Table ■CHAPTER 1 An Introduction to Ajax, RPC, and Modern RIAs . . . . . . . . . . . . . . . . . . 3 ■CHAPTER 2 Getting to Know DWR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 ■CHAPTER 3 Advanced DWR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95 PART 2 ■ ■ ■ The Projects ■CHAPTER 4 InstaMail: An Ajax-Based Webmail Client . . . . . . . . . . . . . . . . . . . . . . 129 ■CHAPTER 5 Share Your Knowledge: DWiki, the DWR-Based Wiki . . . . . . . . . . . 189 ■CHAPTER 6 Remotely Managing Your Files: DWR File Manager. . . . . . . . . . . . . 259 ■CHAPTER 7 Enter the Enterprise: A DWR-Based Report Portal. . . . . . . . . . . . . . 329 ■CHAPTER 8 DWR for Fun and Profit (a DWR Game!) . . . . . . . . . . . . . . . . . . . . . . . . 419 ■CHAPTER 9 Timekeeper: DWR Even Makes Project Management Fun! . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 457 ■INDEX . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 523 v 9411FM.qxd 1/2/08 5:20 PM Page v www.it-ebooks.info 9411FM.qxd 1/2/08 5:20 PM Page vi www.it-ebooks.info Contents Foreword . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xiii About the Author . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xv About the Technical Reviewer. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xvii About the Illustrator. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xix Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxi Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxiii PART 1 ■ ■ ■ Setting the Table ■CHAPTER 1 An Introduction to Ajax, RPC, and Modern RIAs . . . . . . . . . . . 3 A Brief History of Web Development: The “Classic” Model . . . . . . . . . . . . . 3 Dawn of a Whole New World: The PC Era . . . . . . . . . . . . . . . . . . . . . . . 5 Yet Another Revolution: Enter the Web . . . . . . . . . . . . . . . . . . . . . . . . . 7 What’s So Wrong with the Classic Web?. . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 Enter Ajax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 Why Is Ajax a Paradigm Shift? On the Road to RIAs . . . . . . . . . . . . . . . . . . 18 The Flip Side of the Coin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23 Let’ s Get to the Good Stuff: Our F irst Ajax Code, the Manual Way . . . . . . 25 A Quick P ostmortem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 Hey, I Thought This Was Ajax?!?. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30 Cutting IN the Middle Man: Ajax Libraries to Ease Our Pain. . . . . . . . . . . . 33 Alterna tives to Ajax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 Hmm, Are We Forgetting Something? What Could It Be? Oh Y eah, DWR! . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39 Summar y . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 ■CHAPTER 2 Getting to Know DWR. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 First Things First: Why DWR at All? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 DWR: RPC on Steroids for the Web . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45 DWR Architectural Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47 Getting Read y for the Fun: Y our DWR Development Environment . . . . . . . 49 vii 9411FM.qxd 1/2/08 5:20 PM Page vii www.it-ebooks.info A Simple Webapp to Get Us Started. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52 Getting the Lay of the Land: Directory Structure . . . . . . . . . . . . . . . . 52 From Code to Executable: Ant Build Script . . . . . . . . . . . . . . . . . . . . . 53 Application Configuration: web.xml . . . . . . . . . . . . . . . . . . . . . . . . . . . 54 The Markup: index.jsp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55 On the Server Side: MathServlet.java. . . . . . . . . . . . . . . . . . . . . . . . . . 56 The Workhorse: MathDelegate.java . . . . . . . . . . . . . . . . . . . . . . . . . . . 58 It’s Alive: Seeing It in Action. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60 Adding DWR to the Mix. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61 The DWR Test/Debug Page . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65 Configuring DWR Part 1: web.xml . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67 Configuring DWR P art 2: dwr .xml . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 70 Built-in Creators and Converters. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75 The <init> Section. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76 The <allow> Section. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76 The <signatures> Section . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79 Interacting with DWR on the Client. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81 Basic Call Syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81 Call Metadata Object Approach. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 82 A Word on Some Funky Syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83 Setting Beans on a Remote Object. . . . . . . . . . . . . . . . . . . . . . . . . . . . 83 Extended Data Passing to Callbacks . . . . . . . . . . . . . . . . . . . . . . . . . . 87 Interacting with DWR on the Server. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88 DWR Configuration and Other Concepts: The engine.js F ile . . . . . . . . . . . 90 Call Batching. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92 A Quick Look at util.js, the DWR Utility Packa ge . . . . . . . . . . . . . . . . . . . . . 92 Summary. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 94 ■CHAPTER 3 Advanced DWR. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95 Locking the Doors: Security in DWR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95 Deny by Default . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96 J2EE Security and DWR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98 When Perfection Is Elusive: Error Handling in DWR Applications . . . . . . 101 Handling Warnings. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 Handling Errors. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 Handling Exceptions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 Edge Cases: Improper Responses . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 The Mechanics of Handling Exceptional Situations . . . . . . . . . . . . . 105 Another Word on Exceptions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 106 Help from Elsewhere: Accessing Other URLs . . . . . . . . . . . . . . . . . . . . . . . 107 ■CONTENTSviii 9411FM.qxd 1/2/08 5:20 PM Page viii www.it-ebooks.info [...]... WebWork/Struts 2 119 Struts “Classic” 120 Beehive 121 Hibernate 122 Something Old, Something New: Annotations 122 Summary 125 PART 2 sss s CHAPTER 4 The Projects. .. 20 5 The Server-Side Code 23 0 Suggested Exercises 25 7 Summary 25 8 www.it-ebooks.info ix 9411FM.qxd x 1 /2/ 08 5 :20 PM Page x sCONTENTS s CHAPTER 6 Remotely Managing Your Files: DWR File Manager 25 9 Application Requirements and Goals 25 9... 507 Suggested Exercises 520 Summary 521 s INDEX 523 www.it-ebooks.info xi 9411FM.qxd 1 /2/ 08 5 :20 PM Page xii www.it-ebooks.info 9411FM.qxd 1 /2/ 08 5 :20 PM Page xiii Foreword T he funny thing about getting heavily involved in an... Since 20 00, however, he has been involved mainly in building J2EE web-based applications After working with Struts for years (pre-1.0), he got interested in Ajax and joined the Java Web Parts open source project in 20 05 Besides this book, Herman has also served as technical editor for the Apress titles Practical Ajax Projects with Java Technology and Practical Javascript, DOM Scripting, and Ajax Projects. .. surmise it’s not a bad thing That’s what this book is: a series of practical applications, torn apart and described, in a (hopefully!) entertaining style that will, with a little luck, keep you smiling as you learn about a truly great library in DWR xxiii 2ca983ba3745582e6151dc1b079b2db0 www.it-ebooks.info 9411FM.qxd xxiv 1 /2/ 08 5 :20 PM Page xxiv sINTRODUCTION An Overview of This Book This book is... 420 Reverse Ajax in Action 421 Anything Else, or Can We Get Goin’ Already?!? 422 Dissecting InMemoria 423 Configuration Files 424 The Client-Side Code 426 The Server-Side Code 441 Suggested... www.it-ebooks.info 9411FM.qxd 1 /2/ 08 5 :20 PM Page xx www.it-ebooks.info 9411FM.qxd 1 /2/ 08 5 :20 PM Page xxi Acknowledgments T here are quite a few people who played a role in making this book happen, so I’ll do my best to remember everyone, but I probably won’t, so apologies in advance First and foremost, I’d like to thank Joe Walker, creator of DWR, for, well, creating DWR! I’d also like to thank him... Components 26 1 Jakarta Commons IO 26 8 Jakarta Commons FileUpload 26 9 Dissecting Fileman 27 0 Configuration Files 27 3 The Client-Side Code 27 8 The Server-Side Code ... this book as well as learn a thing or two! xv www.it-ebooks.info 9411FM.qxd 1 /2/ 08 5 :20 PM Page xvi www.it-ebooks.info 9411FM.qxd 1 /2/ 08 5 :20 PM Page xvii About the Technical Reviewer sHERMAN VAN ROSMALEN works as a developer/software architect for De Nederlandsche Bank N.V., the central bank of the Netherlands He has more than 20 years of experience in developing software applications in a variety of... 314 Suggested Exercises 326 Summary 326 s CHAPTER 7 Enter the Enterprise: A DWR- Based Report Portal 329 Application Requirements and Goals 329 Spring Dependency Injection (IoC) 331 DataVision . today. Practical www.it-ebooks.info www.it-ebooks.info Frank W. Zammetti Practical DWR 2 Projects 9411FM.qxd 1 /2/ 08 5 :20 PM Page i www.it-ebooks.info Practical DWR 2 Projects Copyright © 20 08 by Frank W. Zammetti All. ROADMAP Pro Ajax and Java™ Frameworks Foundations of Ajax Practical DWR 2 Projects Practical Ajax Projects with Java™ Technology www.apress.com java.apress.com SOURCE CODE ONLINE Companion

Ngày đăng: 22/02/2014, 05:20

w