|Listed in category:
Have one to sell?

Enterprise JavaBeans by Richard Monson-Haefel (2001, Trade Paperback)

US $9.88
or Best Offer
Condition:
Very Good
Shipping:
US $5.61 Economy Shipping. See detailsfor shipping
Located in: Lynchburg, Virginia, United States
Delivery:
Estimated between Thu, Jun 6 and Mon, Jun 10 to 43230
Delivery time is estimated using our proprietary method which is based on the buyer's proximity to the item location, the shipping service selected, the seller's shipping history, and other factors. Delivery times may vary, especially during peak periods.
Returns:
Seller does not accept returns. See details- for more information about returns
Payments:
      
Earn up to 5x points when you use your eBay Mastercard®. Learn moreabout earning points with eBay Mastercard

Shop with confidence

eBay Money Back Guarantee
Get the item you ordered or your money back. Learn moreeBay Money Back Guarantee - opens new window or tab
Seller assumes all responsibility for this listing.
eBay item number:134064051263

Item specifics

Condition
Very Good: A book that does not look new and has been read but is in excellent condition. No obvious ...
ISBN
9780596002268
Publication Year
2001
Type
Textbook
Format
Trade Paperback
Language
English
Publication Name
Enterprise Javabeans
Item Height
1.1in
Author
Richard Monson-Haefel
Item Length
9.2in
Publisher
O'reilly Media, Incorporated
Item Width
7in
Item Weight
29 Oz
Number of Pages
592 Pages

About this product

Product Information

"Enterprise JavaBeans" was recently voted "Best Java Book" by the editors and readers of Java Developer's Journal. Readers of JavaPro named it the "Best Java Book for Experts." And Amazon.com included it in the Top Computer Books for 2000. Now the best only gets better In the new 3rd edition, "Enterprise JavaBeans" has been completely revised and updated with a thorough introduction to the new 2.0 version of the EJB specification. Significantly different from the earlier version, the 2.0 specification introduces three dramatic improvements: A completely new version of container-managed persistence; local interfaces; and a totally new kind of bean called the "message driven bean."The new version of container-managed persistence (CMP) beans in 2.0 is more portable and robust than in the older 1.1 version. Most significant is the introduction of the relationship fields, which allow entity beans to declare relationships with each other as natural references. In order to make this huge leap in component relationships possible, EJB 2.0 had to redesign how entity beans are defined and interact. Our new 3rd edition examines this critical CMP model in detail.Local interfaces are thoroughly discussed as well. Local interfaces allow beans that are co-located to interact without the overhead of remote method calls. This improves the performance of beans considerably and complements the CMP relationship fields.Message driven beans are a new kind of enterprise bean based on asynchronous messaging and the Java Message service (JMS). Instead of responding to Java RMI calls, message driven beans process JMS messages sent by messaging clients. An entire chapter is devoted to message-driven beans and how to use them effectively.In addition, the 3rd edition contains an architecture overview, information on resource management and primary services, design strategies, and XML deployment descriptors.

Product Identifiers

Publisher
O'reilly Media, Incorporated
ISBN-10
0596002262
ISBN-13
9780596002268
eBay Product ID (ePID)
1919949

Product Key Features

Author
Richard Monson-Haefel
Publication Name
Enterprise Javabeans
Format
Trade Paperback
Language
English
Publication Year
2001
Type
Textbook
Number of Pages
592 Pages

Dimensions

Item Length
9.2in
Item Height
1.1in
Item Width
7in
Item Weight
29 Oz

Additional Product Features

Lc Classification Number
Qa76.73.J38m65 2001
Edition Number
3
Table of Content
Dedication;Preface; Author's Note; What Is Enterprise JavaBeans?; Who Should Read This Book?; Organization; Software and Versions; Example Workbooks; Conventions; Comments and Questions; Acknowledgments;Chapter 1: Introduction; 1.1 Setting the Stage; 1.2 Enterprise JavaBeans Defined; 1.3 Distributed Object Architectures; 1.4 Component Models; 1.5 Component Transaction Monitors; 1.6 CTMs and Server-Side Component Models; 1.7 Titan Cruises: An Imaginary Business; 1.8 What's Next?;Chapter 2: Architectural Overview; 2.1 The Enterprise Bean Component; 2.2 Using Enterprise Beans; 2.3 The Bean-Container Contract; 2.4 Summary;Chapter 3: Resource Management and the Primary Services; 3.1 Resource Management; 3.2 Primary Services; 3.3 What's Next?;Chapter 4: Developing Your First Enterprise Beans; 4.1 Choosing and Setting Up an EJB Server; 4.2 Developing an Entity Bean; 4.3 Developing a Session Bean;Chapter 5: The Client View; 5.1 Locating Beans with JNDI; 5.2 The Remote Client API; 5.3 EJB 2.0: The Local Client API;Chapter 6: EJB 2.0 CMP: Basic Persistence; 6.1 Overview; 6.2 The Customer EJB; 6.3 Persistence Fields; 6.4 Dependent Value Classes; 6.5 Relationship Fields;Chapter 7: EJB 2.0 CMP: Entity Relationships; 7.1 The Seven Relationship Types;Chapter 8: EJB 2.0 CMP: EJB QL; 8.1 Declaring EJB QL; 8.2 The Query Methods; 8.3 EJB QL Examples; 8.4 Problems with EJB QL;Chapter 9: EJB 1.1 CMP; 9.1 A Note for EJB 2.0 Readers; 9.2 Overview for EJB 1.1 Readers; 9.3 Container-Managed Persistence;Chapter 10: Bean-Managed Persistence; 10.1 The Remote Interface; 10.2 The Remote Home Interface; 10.3 The Primary Key; 10.4 The ShipBean; 10.5 Obtaining a Resource Connection; 10.6 Exception Handling; 10.7 The ejbCreate( ) Method; 10.8 The ejbLoad( ) and ejbStore( ) Methods; 10.9 The ejbRemove( ) Method; 10.10 The ejbFind( ) Methods; 10.11 The Deployment Descriptor;Chapter 11: The Entity-Container Contract; 11.1 The Primary Key; 11.2 The Callback Methods; 11.3 EJB 2.0: ejbHome( ); 11.4 EntityContext; 11.5 The Life Cycle of an Entity Bean;Chapter 12: Session Beans; 12.1 The Stateless Session Bean; 12.2 The Life Cycle of a Stateless Session Bean; 12.3 The Stateful Session Bean; 12.4 The Life Cycle of a Stateful Session Bean;Chapter 13: Message-Driven Beans; 13.1 JMS as a Resource; 13.2 Message-Driven Beans;Chapter 14: Transactions; 14.1 ACID Transactions; 14.2 Declarative Transaction Management; 14.3 Isolation and Database Locking; 14.4 Nontransactional Beans; 14.5 Explicit Transaction Management; 14.6 Exceptions and Transactions; 14.7 Transactional Stateful Session Beans;Chapter 15: Design Strategies; 15.1 Hash Codes in Compound Primary Keys; 15.2 Passing Objects by Value; 15.3 Improved Performance with Session Beans; 15.4 Bean Adapters; 15.5 Implementing a Common Interface; 15.6 Entity Beans Without Create Methods; 15.7 EJB 1.1: Object-to-Relational Mapping Tools; 15.8 Avoid Emulating Entity Beans with Session Beans; 15.9 Direct Database Access from Session Beans; 15.10 Avoid Chaining Stateful Session Beans;Chapter 16: XML Deployment Descriptors; 16.1 What Is an XML Deployment Descriptor?; 16.2 The Contents of a Deployment Descriptor; 16.3 The Document Header; 16.4 The Descriptor's Body; 16.5 Describing Enterprise Beans; 16.6 EJB 2.0: Describing Relationships; 16.7 Describing Bean Assembly; 16.8 The ejb-jar File;Chapter 17: Java 2, Enterprise Edition; 17.1 Servlets; 17.2 JavaServer Pages; 17.3 Web Components and EJB; 17.4 J2EE Fills in the Gaps; 17.5 Fitting the Pieces Together; 17.6 Future Enhancements;The Enterprise JavaBeans API; Package: javax.ejb; EJB 2.0: Package: javax.jms; EJB 2.0: Package: javax.ejb.spi;State and Sequence Diagrams; Entity Beans; Session Beans;EJB Vendors; Commercial Products; Open Source Projects;Colophon;
Copyright Date
2001
Target Audience
Scholarly & Professional
Topic
Programming Languages / Java, General
Lccn
2002-279108
Dewey Decimal
005.13/3
Dewey Edition
22
Illustrated
Yes
Genre
Computers

Item description from the seller

diverbm83

diverbm83

100% positive feedback
41 items sold
Joined Sep 2007

Product ratings and reviews

No ratings or reviews yet
Be the first to write the review.