Designing Enterprise Applications with the J2EE™ Platform
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Home > Computing and Information Technology > Computer programming / software engineering > Web programming > Designing Enterprise Applications with the J2EE™ Platform
Designing Enterprise Applications with the J2EE™ Platform

Designing Enterprise Applications with the J2EE™ Platform


     0     
5
4
3
2
1



Out of Stock


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

"The Java BluePrints Team has done it again. This book is an indispensable asset to all J2EE developers and should never be far from reach."--John Crupi, coauthor of Core J2EE Patterns, Distinguished Engineer, Sun Java Center, Sun Microsystems, Inc.The Java 2 Platform, Enterprise Edition, offers developers a simplified, component-based approach to creating applications for intranets and the Internet.As part of the highly regarded Java BluePrints program, Designing Enterprise Applications with the J2EE Platform, Second Edition, describes the key architectural and design issues in applications supported by the J2EE platform and offers practical guidelines for both architects and developers. It explores key J2EE platform features such as Java servlets, JavaServer Pages , and Enterprise JavaBeans component models, as well as the JDBC API, Java Message Service API, and J2EE Connector Architecture. It also discusses security, deployment, transaction management, internationalization, and other important issues for today's applications.Through code samples and a full e-commerce application example, this book provides concrete guidelines to mastering the J2EE platform. Highlights include:An introduction to the J2EE platform, the applications it supports, and the technologies it providesDiscussions on how to design Web-based applications using Java servlet and JavaServer Pages technologiesArchitectural guidelines for designing Enterprise JavaBeans components for scalability, reliability, and performanceHow to connect J2EE applications to existing systems and applications using JDBC and J2EE Connector technologiesDesign motivations behind the widely used Java Pet Store demo applicationA glossary of J2EE and enterprise computing terminology 0201787903B03142002

Table of Contents:
Foreword. Preface. About the Authors. 1. Introduction. Challenges of Enterprise Application Development. Programming Productivity. Integration with Existing Systems. Freedom of Choice. Response to Demand. Maintaining Security. The Platform for Enterprise Solutions. J2EE Platform Overview. J2EE Platform Benefits. J2EE Application Scenarios. Multitier Application Scenario. Stand-Alone Client Scenario. Web-Centric Application Scenario. Business-to-Business Scenario. How This Book Is Organized. Summary. References and Resources. 2. J2EE Platform Technologies. Component Technologies. Types of J2EE Clients. Web Components. Enterprise JavaBeans Components. Components, Containers, and Services. Platform Roles. J2EE Product Provider. Application Component Provider. Application Assembler. Deployer. System Administrator. Tool Provider. Platform Services. Naming Services. Deployment Services. Transaction Services. Security Services. Service Technologies. JDBC API. Java Transaction API and Service. Java Naming and Directory Interface. J2EE Connector Architecture. Java API for XML Processing Technology. Communication Technologies. Internet Protocols. Remote Method Invocation Protocols. Object Management Group Protocols. Messaging Technologies. Data Formats. Summary. References and Resources. 3. The Client Tier. Client Considerations. Network Considerations. Security Considerations. Platform Considerations. General Design Issues and Guidelines. Design Issues and Guidelines for Browser Clients. Presenting the User Interface. Validating User Inputs. Communicating with the Server. Managing Conversational State. Design Issues and Guidelines for Java Clients. Presenting the User Interface. Validating User Inputs. Communicating with the Server. Managing Conversational State. Summary. References and Resources. 4. The Web Tier. The Purpose of the Web Tier. Web-Tier Technologies. Traditional Web-Tier Technologies. Web-Tier Technologies in the J2EE Platform. The Web Container. Java Servlets. JavaServer Pages (JSP) Technology. Web-Tier Technology Guidelines. Web-Tier Application Structure. Web-Tier Application Framework Design. Structuring the Web Tier. Web-Tier MVC Controller Design. Web-Tier MVC View Design. Web-Tier MVC Model Design. Web Application Frameworks. Separating Business Logic from Presentation. Web-Tier State. Distributable Web Applications. Summary. References and Resources. 5. The Enterprise JavaBeans Tier. Business Logic and Business Objects. Common Requirements of Business Objects. Enterprise Beans as J2EE Business Objects. Enterprise Beans and EJB Containers. Remote and Local Client Views. Guidelines for Using Local or Remote Client Views. Entity Beans and Local Client Views. Entity Beans. Guidelines for Using Entity Beans. Entity Bean Persistence. When to Use Bean-Managed Persistence. Session Beans. Stateful Session Beans. Stateless Session Beans. Message-Driven Beans. Uses of Message-Driven Beans. Example: Invoice Message-Driven Bean. Design Guidelines. Remote versus Local Client Access for Entity Beans. Session Beans as a Facade to Entity Beans. Fine-Grained versus Coarse-Grained Object Access. Master-Detail Modeling Using Enterprise Beans. Data Access Objects. Implementing an Entity Bean without a Create Method. Representing References to Entity Beans. Portability Guidelines. Typecast Remote References. Mark Non-Serializable Fields Transient. Bean-Managed Persistence and Portability. Summary. References and Resources. 6. Integrating with the Enterprise Information System Tier. Integration Scenarios. An Internet E-Store Application. An Intranet Human Resources Application. A Distributed Purchasing Application. An Order Fulfillment Application. J2EE Integration Technologies. J2EE Connector Architecture. Java Message Service API. JDBC and RDBMS Access. Application Integration Design Approaches. Synchronous Integration. Asynchronous Integration. Comparing Approaches. Data Integration. Developing an Integration Layer. Programming Access to Data and Functions. Using Tools for EIS Integration. Developing EIS Access Objects. Guidelines for Connection Management. Security Guidelines. Summary. References and Resources. 7. Packaging and Deployment. Packaging Components. Roles and Tasks. Application Component Provider Tasks. Application Assembler Tasks. Deployer Tasks. Packaging J2EE Applications. EJB Modules. EJB Module Packaging Guidelines. Web Modules. Packaging Components into Web Modules. Application Client Modules. Resource Adapter Modules. Deployment Descriptors. J2EE Naming Environment. Specifying Deployment Descriptor Elements. Naming Convention Recommendations. Deployment Tools. Deployment Tool Actions. Deployment Tool Requirements. Summary. References and Resources. 8. Transaction Management. Transactional Concepts. ACID Transaction Properties. Transaction Participants. Transaction Demarcation. Distributed Transactions. Two-Phase Commit Protocol. J2EE Platform Transactions. Accessing Multiple Resources within a Transaction. Transactions across Servers. J2EE Transaction Technologies. Client Tier Transactions. Web Tier Transaction Guidelines. Enterprise JavaBeans Tier Transactions. Bean-Managed Transaction Demarcation. Container-Managed Transaction Demarcation. Transaction Attributes. Enterprise JavaBeans Tier Transaction Guidelines. EIS Tier Transactions. JTA Transactions. Resource Manager Local Transactions. EIS Tier Transaction Guidelines. Compensating Transactions. Isolation Level. Performance with Multiple Resource Managers. J2EE Resource Manager Types. JDBC Databases. JMS Providers. J2EE Connector Architecture. Summary. References and Resources. 9. Security. Security Threats and Mechanisms. Authentication. Protection Domains. Authentication Mechanisms. Authentication Call Patterns. Exposing Authentication Boundaries with References. Authorization. Declarative Authorization. Programmatic Authorization. Declarative versus Programmatic Authorization. Isolation. Affects of Identity Selection. Encapsulation for Access Control. Controlling Access to J2EE Resources. Example. Protecting Messages. Integrity Mechanisms. Confidentiality Mechanisms. Identifying Sensitive Components. Ensuring Confidentiality of Web Resources. Auditing. Summary. References and Resources. 10. J2EE Internationalization and Localization. Internationalization Concepts and Terminology. Internationalization, Localization, and Locale. Character Sets. Encodings. Using J2SE Internationalization APIs in J2EE Applications. Resource Bundles. Message Formatting. Date Formatting. Collation. Web Tier Internationalization. Tracking Locales and Encodings. Presentation Component Design. Internationalizing and Localizing JSP Pages. EIS Tier Internationalization. Persistent Localized Data. Internationalizing Database Schema. Internationalized Application Design. Internationalizing Applications with XML. Generating Localized Dynamic Content with XSLT. Communicating Locale within an Application. Communicating Locale among Applications. Localizing Error and Logging Messages. Client Messages and Application Exceptions. System Exceptions and Message Logging. Summary. References and Resources. 11. Architecture of the Sample Application. J2EE Architecture Approaches. Model-View-Controller Architecture. J2EE Design Patterns. Sample Application Overview. Designing the Sample Application. Choosing Application Tiers. Choosing Local or Distributed Architecture. Architecture of the Sample Application. Application Web Site Architecture. Fulfillment Center Architecture. Summary. References and Resources. Afterword. Glossary. Index. 0201787903T03252002

About the Author :
Inderjeet Singh is lead architect on the Java BluePrints Team, where he works with other architects and engineers to define best uses of Java technologies for application design. Beth Stearns is the principal partner of ComputerEase Publishing, a computer consulting firm she founded in 1982. Among her publications are Java Native Interface in The Java Tutorial Continued (Addison-Wesley), “The EJB Programming Guide” for Inprise Corporation, and “ Understanding EDT, ” a guide to Digital Equipment Corporation's text editor. Mark Johnson is an enterprise computing consultant and author. 0201787903AB09232002


Best Sellers


Product Details
  • ISBN-13: 9780201787900
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison Wesley
  • Height: 187 mm
  • No of Pages: 448
  • Weight: 812 gr
  • ISBN-10: 0201787903
  • Publisher Date: 05 Apr 2002
  • Binding: Paperback
  • Language: English
  • Spine Width: 28 mm
  • Width: 234 mm


Similar Products

Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
Designing Enterprise Applications with the J2EE™ Platform
Pearson Education (US) -
Designing Enterprise Applications with the J2EE™ Platform
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.

Designing Enterprise Applications with the J2EE™ Platform

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

    Fresh on the Shelf


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!