Vente réussie le mer. 11 juin à 4:17.
Patterns of Enterprise Application Architecture by Fowler, Martin, Excellent
Vendu
Patterns of Enterprise Application Architecture by Fowler, Martin, Excellent
19,99 USD19,99 USD
jeu. 12 juin, 04:17jeu. 12 juin, 04:17
Vous en avez un à vendre ?

Patterns of Enterprise Application Architecture by Fowler, Martin, Excellent

Media Mound
(1192)
Inscrit comme vendeur particulier
En conséquence, les droits des consommateurs découlant de la législation européenne ne s'appliquent pas. La Garantie client eBay continue de s'appliquer pour la plupart des achats.
19,99 USD
Environ17,27 EUR
État :
Très bon état
    Livraison :
    4,99 USD (environ 4,31 EUR) USPS Media MailTM.
    Lieu où se trouve l'objet : Louisville, Kentucky, États-Unis
    Délai de livraison :
    Estimé entre le sam. 9 août et le ven. 15 août à 94104
    Les délais de livraison sont estimés au moyen de notre méthode exclusive basée sur la distance entre l'acheteur et le lieu où se trouve l'objet, le service de livraison sélectionné, l'historique des livraisons du vendeur et d'autres facteurs. Les délais de livraison peuvent varier, notamment pendant les périodes de pointe.
    Retours :
    Retours refusés.
    Paiements :
         Diners Club

    Achetez en toute confiance

    Garantie client eBay
    Obtenez un remboursement si vous ne recevez pas l'objet que vous avez commandé. En savoir plusGarantie client eBay - la page s'ouvre dans une nouvelle fenêtre ou un nouvel onglet
    Le vendeur assume l'entière responsabilité de cette annonce.
    Numéro de l'objet eBay :116595760384

    Caractéristiques de l'objet

    État
    Très bon état: Livre qui ne semble pas neuf, ayant déjà été lu, mais qui est toujours en excellent ...
    Book Title
    Patterns of Enterprise Application Architecture
    ISBN
    9780321127426

    À propos de ce produit

    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
    Author
    Martin Fowler
    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

    Description de l'objet fournie par le vendeur

    À propos de ce vendeur

    Media Mound

    100% d'évaluations positives2,5 000 objets vendus

    Membre depuis févr. 2001
    Répond en général sous 24 heures
    Inscrit comme vendeur particulierEn conséquence, les droits des consommateurs découlant de la législation européenne ne s'appliquent pas. La Garantie client eBay continue de s'appliquer pour la plupart des achats.
    Specializing in VHS tapes, DVDs & Blu-ray, CDs, Cassettes, Vinyl, Video Games and Collectibles.
    Visiter la BoutiqueContacter

    Évaluations détaillées du vendeur

    Moyenne pour les 12 derniers mois
    Description exacte
    5.0
    Frais de livraison raisonnables
    4.9
    Livraison rapide
    5.0
    Communication
    5.0

    Évaluations du vendeur (859)

    Toutes les évaluations
    Positives
    Neutres
    Négatives
      • c***d (255)- Évaluations laissées par l'acheteur.
        6 derniers mois
        Achat vérifié
        Great seller. Item received in great shape, as in the pictures. A++++
      Afficher toutes les évaluations