
Patterns of Enterprise Application Architecture von Fowler, Martin, top
US $19,99US $19,99
Do, 12. Jun, 04:17Do, 12. Jun, 04:17
Bild 1 von 3



Galerie
Bild 1 von 3



Patterns of Enterprise Application Architecture von Fowler, Martin, top
US $19,99
Ca.CHF 16,25
Artikelzustand:
Sehr gut
Buch, das nicht neu aussieht und gelesen wurde, sich aber in einem hervorragenden Zustand befindet. Der Einband weist keine offensichtlichen Beschädigungen auf. Bei gebundenen Büchern ist der Schutzumschlag vorhanden (sofern zutreffend). Alle Seiten sind vollständig vorhanden, es gibt keine zerknitterten oder eingerissenen Seiten und im Text oder im Randbereich wurden keine Unterstreichungen, Markierungen oder Notizen vorgenommen. Der Inneneinband kann minimale Gebrauchsspuren aufweisen. Minimale Gebrauchsspuren. Genauere Einzelheiten sowie eine Beschreibung eventueller Mängel entnehmen Sie bitte dem Angebot des Verkäufers.
Oops! Looks like we're having trouble connecting to our server.
Refresh your browser window to try again.
Versand:
US $4,99 (ca. CHF 4,06) USPS Media MailTM.
Standort: Louisville, Kentucky, USA
Lieferung:
Lieferung zwischen Sa, 28. Jun und Sa, 5. Jul nach 94104 bei heutigem Zahlungseingang
Rücknahme:
Keine Rücknahme.
Zahlungen:
Sicher einkaufen
Der Verkäufer ist für dieses Angebot verantwortlich.
eBay-Artikelnr.:116595760384
Artikelmerkmale
- Artikelzustand
- Book Title
- Patterns of Enterprise Application Architecture
- ISBN
- 9780321127426
Über dieses Produkt
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
Publication Name
Patterns of Enterprise Application Architecture
Language
English
Subject
Systems Architecture / General, General, Programming / Object Oriented, Enterprise Applications / General, Software Development & Engineering / Systems Analysis & Design
Publication Year
2002
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
Artikelbeschreibung des Verkäufers
Info zu diesem Verkäufer
Media Mound
100% positive Bewertungen•2.4 Tsd. Artikel verkauft
Angemeldet als privater VerkäuferDaher finden verbraucherschützende Vorschriften, die sich aus dem EU-Verbraucherrecht ergeben, keine Anwendung. Der eBay-Käuferschutz gilt dennoch für die meisten Käufe.
Verkäuferbewertungen (842)
Dieser Artikel (1)
Alle Artikel (842)
- c***d (255)- Bewertung vom Käufer.Letzter MonatBestätigter KaufGreat seller. Item received in great shape, as in the pictures. A++++
- c***d (254)- Bewertung vom Käufer.Letzter MonatBestätigter KaufGreat seller. Item received in great shape, as in the pictures. A++++
- e***s (1537)- Bewertung vom Käufer.Letzter MonatBestätigter KaufExcellent thank you!
- 6***9 (27)- Bewertung vom Käufer.Letzter MonatBestätigter KaufGood communication, prompt shipping, exactly as described.
Noch mehr entdecken:
- Martin-Rütter-Sachbuch Bücher,
- Kat Martin Belletristik-Bücher,
- George-R.R. - Martin-Belletristik-Bücher,
- George-R.R. - Martin Hörbücher und Hörspiele,
- Martin-Rütter-Sachbuch Bücher auf Deutsch,
- Martin-Rütter-Tiere - & -Haustiere-Sachbuch Bücher,
- George-R.R. - Martin-Das-Lied-von - Eis-und-Feuer-Belletristik - Bücher,
- Englische Bücher George-R.R. - Martin-Belletristik,
- George-R.R. - Martin-Gebundene-Ausgabe-Belletristik - Bücher,
- Martin-Rütter-Tiere - & -Haustiere-Sachbuch Bücher über Hunde