Action Domain Responder

Action-Domain-Responder: a web-specific alternative to Model-View-Controller.

  • Owner: pmjones/adr
  • Platform:
  • License::
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

Action Domain Responder

Action Domain Responder organizes a single user interface interaction between an HTTP client and a HTTP server-side application into three distinct roles.

ADR

Components

Action is the logic to connect the Domain and Responder. It invokes the Domain with inputs collected from the HTTP request, then invokes the Responder with the data it needs to build an HTTP response.

Domain is an entry point to the domain logic forming the core of the application, modifying state and persistence as needed. This may be a Transaction Script, Service Layer, Application Service, or something similar.

Responder is the presentation logic to build an HTTP response from the data it receives from the Action. It deals with status codes, headers and cookies, content, formatting and transformation, templates and views, and so on.

Collaborations

  1. The web handler receives an HTTP request and dispatches it to an Action.

  2. The Action invokes the Domain, collecting any required inputs to the Domain from the HTTP request.

  3. The Action then invokes the Responder with the data it needs to build an HTTP response (typically the HTTP request and the Domain results, if any).

  4. The Responder builds an HTTP response using the data fed to it by the Action.

  5. The Action returns the HTTP response to the web handler sends the HTTP response.

Reading

Resources

Example code resides in the example repository.


You can read about the history of this pattern here, and you can find the acknowledgments here.

Main metrics

Overview
Name With Ownerpmjones/adr
Primary LanguageHTML
Program languageHTML (Language Count: 1)
Platform
License:
所有者活动
Created At2014-05-06 15:01:09
Pushed At2022-02-28 16:23:43
Last Commit At2022-02-28 10:23:43
Release Count0
用户参与
Stargazers Count1.1k
Watchers Count64
Fork Count64
Commits Count224
Has Issues Enabled
Issues Count30
Issue Open Count4
Pull Requests Count34
Pull Requests Open Count0
Pull Requests Close Count3
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private