Foto 1 di 5





Galleria
Foto 1 di 5





Ne hai uno da vendere?
Addison-Wesley Signature Series (Fowler) Ser.: Patterns of Enterprise...
US $24,99
CircaEUR 21,40
Condizione:
Buone condizioni
Libro che è già stato letto ma è in buone condizioni. Mostra piccolissimi danni alla copertina incluse alcune rigature, ma nessun foro o strappo. È possibile che la sovraccoperta per le copertine rigide non sia inclusa. La rilegatura presenta minimi segni di usura. La maggior parte delle pagine non è danneggiata e mostra una quantità minima di piegature o strappi, sottolineature di testo a matita, nessuna evidenziazione di testo né scritte ai margini. Non ci sono pagine mancanti. Per maggiori dettagli e la descrizione di eventuali imperfezioni, consulta l'inserzione del venditore.
Oops! Looks like we're having trouble connecting to our server.
Refresh your browser window to try again.
Spedizione:
Gratis Standard Shipping.
Oggetto che si trova a: Hayes, Virginia, Stati Uniti
Consegna:
Consegna prevista tra il sab 16 ago e il mer 20 ago
Restituzioni:
Restituzioni non accettate.
Pagamenti:
Fai shopping in tutta sicurezza
Il venditore si assume la piena responsabilità della messa in vendita dell'oggetto.
Numero oggetto eBay:406096521442
Specifiche dell'oggetto
- Condizione
- ISBN
- 9780321127426
Informazioni su questo prodotto
Product Information
The practice of enterprise application development has benefited from the emergence of many new enabling technologies. Multi-tiered object-oriented platforms, such as Java and .NET, have become commonplace. These new tools and technologies are capable of building powerful applications, but they are not easily implemented. Common failures in enterprise applications often occur because their developers do not understand the architectural lessons that experienced object developers have learned. Patterns of Enterprise Application Architecture is written in direct response to the stiff challenges that face enterprise application developers. The author, noted object-oriented designer Martin Fowler, noticed that despite changes in technology--from Smalltalk to CORBA to Java to .NET--the same basic design ideas can be adapted and applied to solve common problems. With the help of an expert group of contributors, Martin distills over forty recurring solutions into patterns. The result is an indispensable handbook of solutions that are applicable to any enterprise application platform. This book is actually two books in one. The first section is a short tutorial on developing enterprise applications, which you can read from start to finish to understand the scope of the book's lessons. The next section, the bulk of the book, is a detailed reference to the patterns themselves. Each pattern provides usage and implementation information, as well as detailed code examples in Java or C#. The entire book is also richly illustrated with UML diagrams to further explain the concepts. Armed with this book, you will have the knowledge necessary to make important architectural decisions about building an enterprise application and the proven patterns for use when building them. The topics covered include · Dividing an enterprise application into layers · The major approaches to organizing business logic · An in-depth treatment of mapping between objects and relational databases · Using Model-View-Controller to organize a Web presentation · Handling concurrency for data that spans multiple transactions · Designing distributed object interfaces
Product Identifiers
Publisher
Addison Wesley Professional
ISBN-10
0321127420
ISBN-13
9780321127426
eBay Product ID (ePID)
2256250
Product Key Features
Number of Pages
560 Pages
Language
English
Publication Name
Patterns of Enterprise Application Architecture
Publication Year
2002
Subject
Systems Architecture / General, General, Programming / Object Oriented, Enterprise Applications / General, Software Development & Engineering / Systems Analysis & Design
Type
Textbook
Subject Area
Computers
Series
Addison-Wesley Signature Series (Fowler) Ser.
Format
Hardcover
Dimensions
Item Height
1.2 in
Item Weight
40 Oz
Item Length
9.4 in
Item Width
7.5 in
Additional Product Features
LCCN
2002-027743
Dewey Edition
21
Target Audience
Scholarly & Professional
Illustrated
Yes
Dewey Decimal
005.1
Lc Classification Number
Qa76.9.S88f69 2003
Table of Content
Preface. Who This Book Is For. Acknowledgements. Colophon. Introduction. Architecture. Enterprise Applications. Kinds of Enterprise Application. Thinking About Performance. Patterns. The Structure of the Patterns. Limitations of These Patterns. I. THE NARRATIVES. 1. Layering. The Evolution of Layers in Enterprise Applications. The Three Principal Layers. Choosing Where to Run Your Layers. 2. Organizing Domain Logic. Making a Choice. Service Layer. 3. Mapping to Relational Databases. Architectural Patterns. The Behavioral Problem. Reading in Data Structural Mapping Patterns. Mapping Relationships. Inheritance. Building the Mapping. Double Mapping. Using Metadata. Database Connections. Some Miscellaneous Points. Further Reading. 4. Web Presentation. View Patterns. Input Controller Patterns. Further Reading. 5. Concurrency (by Martin Fowler and David Rice). Concurrency Problems. Execution Contexts. Isolation and Immutability. Optimistic and Pessimistic Concurrency Control. Preventing Inconsistent Reads. Deadlocks. Transactions. ACID. Transactional Resources. Reducing Transaction Isolation for Liveness. Business and System Transactions. Patterns for Offline Concurrency Control. Application Server Concurrency. Further Reading. 6. Session State. The Value of Statelessness. Session State. Ways to Store Session State. 7. Distribution Strategies. The Allure of Distributed Objects. Remote and Local Interfaces. Where You Have to Distribute. Working with the Distribution Boundary. Interfaces for Distribution. 8. Putting it all Together. Starting With the Domain Layer. Down to the Data Source. Data Source for Transaction Script. Data Source Table Module (125). Data Source for Domain Model (116). The Presentation Layer. Some Technology-Specific Advice. Java and J2EE. .NET. Stored Procedures. Web Services. Other Layering Schemes. II. THE PATTERNS. 9. Domain Logic Patterns. Transaction Script. How It Works. When to Use It. The Revenue Recognition Problem. Example: Revenue Recognition (Java). Domain Model. How It Works. When to Use It. Further Reading. Example: Revenue Recognition (Java). Table Module. How It Works. When to Use It. Example: Revenue Recognition with a Table Module (C#). Service Layer(by Randy Stafford). How It Works. When to Use It. Further Reading. Example: Revenue Recognition (Java). 10. Data Source Architectural Patterns. Table Data Gateway. How It Works. When to Use It. Further Reading. Example: Person Gateway (C#). Example: Using ADO.NET Data Sets (C#). Row Data Gateway. How It Works. When to Use It. Example: A Person Record (Java). Example: A Data Holder for a Domain Object (Java). Active Record. How It Works. When to Use It. Example: A Simple Person (Java). Data Mapper. How It Works. When to Use It. Example: A Simple Database Mapper (Java). Example: Separating the Finders (Java). Example: Creating an Empty Object (Java). 11. Object-Relational Behavioral Patterns. Unit of Work. How It Works. When to Use It. Example: Unit of Work with Object Registration (Java) (by David Rice). Identity Map. How It Works. When to Use It. Example: Methods for an Identity Map (Java). Lazy Load. How It Works. When to Use It. Example: Lazy Initialization (Java). Example: Virtual Proxy (Java). Example: Using a Value Holder (Java). Example: Using Ghosts (C#). 12. Object-Relational Structural Patterns. Identity Field. How It Works. When to Use It. Further Reading. Example: Integral Key (C#). Example: Using a Key Table (Java). Example: Using a Compound Key (Java). Foreign Key Mapping. How It Works. When to Use It. Example: Single-Valued Reference (Java). Example: Multitable Find (Java). Example: Collection of References (C#). Association Table Mapping. How It Works. When to Use It. Example: Employees and Skills (C#). Example: Using Direct SQL (Java). Example: Using a Single Query for Multiple Employees (Java) (by Matt Foemmel
Descrizione dell'oggetto fatta dal venditore
Informazioni sul venditore professionale
Informazioni su questo venditore
Wagon Express LLC
99,3% di Feedback positivi•4,2 mila oggetti venduti
Registrato come venditore professionale
Feedback sul venditore (1.389)
- o***n (258)- Feedback lasciato dall'acquirente.Ultimi 6 mesiAcquisto verificatoThis seller is the very best top-notch seller I have ever dealt with on Ebay. I emailed him a question about this phone on a holiday, and he replied in less than two minutes. I used "buy it now" and it was in the mail the very next morning. The Item is fantastic. Works perfect, obviously has never been used. The unit was very well packaged, and it arrived here two days earlier than expected. I could not be happier. I hope to buy from this fellow veteran again.
- e***o (940)- Feedback lasciato dall'acquirente.Ultimi 6 mesiAcquisto verificatoItem arrived on time and in perfect condition. The seller went out of their way to pack the item properly for mailing. The item quality was as listed. The item was exactly what the pictures and description in the listing said it would be. Item looks great! The item fits right into my collection like it always belonged there.The price was exactly what I wanted. Great seller, I highly recommend them. I am a satisfied customer.Planetarian: OVAs and Movie (Blu-ray/DVD, 2018, 4-Disc set + Digital HD) NEW! (N° 405545924969)
- c***k (892)- Feedback lasciato dall'acquirente.Ultimi 6 mesiAcquisto verificatoThe item arrived sooner than expected. I really like the packaging that was used for this item because of this the item arrive in perfect condition. Thanks for using the correct packaging for these games. The game is as describe brand new seal in packaging good value for the price. I really appreciate the quality of the packaging use for this game. Other sellers do not use this kind of packaging. I recommend the seller for using the correct packaging for this game . The game works on PS4 and PS5Grand Theft Auto: The Trilogy - Definitive Edition (Sony PlayStation 4, 2021) (N° 405752167854)