Introduction
The Entity Control Boundary (ECB) pattern is and old pattern that was published by Ivar Jacobson (Ericsson Co.) in 80's. It is has things in common with the Model View Controller (MVC) Pattern that was published by Trygve Reenskaug (XEROX Co.) in 70's. The MVC pattern is mainly used in User Interface, where the ECB is a general pattern to structure your backend.
Entity Control Boundary (ECB) Pattern
The ECB Pattern is built up by
- Boundary - the API for your component. Today typically a REST API, but could be Web Service, JMS, etc. It is the external interface for your component.
- Control - encapsulate the Logic for your component.
- Entity - -the Model
No comments:
Post a Comment