|Listed in category:
This listing sold on Wed, Jun 11 at 22:17.
Patterns of Enterprise Application Architecture by Fowler, Martin, Excellent
Sold
Patterns of Enterprise Application Architecture by Fowler, Martin, Excellent
US $19.99US $19.99
Wed, Jun 11, 10:17 PMWed, Jun 11, 10:17 PM
Have one to sell?

Patterns of Enterprise Application Architecture by Fowler, Martin, Excellent

US $19.99
ApproximatelyC $27.53
Condition:
Very Good
    Shipping:
    US $4.99 (approx C $6.87) USPS Media MailTM.
    Located in: Louisville, Kentucky, United States
    Delivery:
    Estimated between Sat, Aug 9 and Fri, Aug 15 to 94104
    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:
    No returns accepted.
    Payments:
         Diners Club

    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:116595760384

    Item specifics

    Condition
    Very Good: A book that does not look new and has been read but is in excellent condition. No obvious ...
    Book Title
    Patterns of Enterprise Application Architecture
    ISBN
    9780321127426

    About this product

    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

    Item description from the seller

    About this seller

    Media Mound

    100% positive feedback2.5K items sold

    Joined Feb 2001
    Usually responds within 24 hours
    Specializing in VHS tapes, DVDs & Blu-ray, CDs, Cassettes, Vinyl, Video Games and Collectibles.

    Detailed seller ratings

    Average for the last 12 months
    Accurate description
    5.0
    Reasonable shipping cost
    4.9
    Shipping speed
    5.0
    Communication
    5.0

    Seller feedback (859)

    All ratings
    Positive
    Neutral
    Negative
      • c***d (255)- Feedback left by buyer.
        Past 6 months
        Verified purchase
        Great seller. Item received in great shape, as in the pictures. A++++
      See all feedback

      Product ratings and reviews

      5.0
      4 product ratings
      • 4 users rated this 5 out of 5 stars
      • 0 users rated this 4 out of 5 stars
      • 0 users rated this 3 out of 5 stars
      • 0 users rated this 2 out of 5 stars
      • 0 users rated this 1 out of 5 stars

      Would recommend

      Good value

      Compelling content

      Most relevant reviews

      • A must read book!

        Like new book!

        Verified purchase: YesCondition: Pre-OwnedSold by: bookmans_exchange