Category

Archive for the 'Design Patterns' Category

MVC, where do I invoke my messaging integration layer from?

Model View Controller (MVC), is an architectural pattern and is defined as:
“It is common to split an application into separate layers that run on different computers: presentation (UI), domain logic, and data access. In MVC the presentation layer is further separated into view and controller.
MVC is often seen in web applications, where the [...]