In MVC should a model contain subview models?
Some background:
In MVC should a model contain subview models?
Some background:
Introduce Data Transfer Objects or expose complex data model in REST
We are working on an MVVM application. Jersey (backend) exposing a REST interface and AngularJS (frontend) being the only consumer of this interface. The application uses a complex database model (data model), which is different from the model presented to the user in the browser (view model).
Clean architecture: should users go in the use case layer or the domain layer?
I recently read this article about Clean Architecture, as I’m trying to get out of some usual OO habits (interface design everywhere, but what does it do???), and program something that describes what the system does instead of how the system is built (to paraphrase “Uncle” Bob).
Clean architecture: should users go in the use case layer or the domain layer?
I recently read this article about Clean Architecture, as I’m trying to get out of some usual OO habits (interface design everywhere, but what does it do???), and program something that describes what the system does instead of how the system is built (to paraphrase “Uncle” Bob).
Sending a notification to each participant 3 hours before the meeting starts
Let’s assume an application that deals with meetings where some users will participate.
How should I represent composeable, associative computations to be repeatedly applied to units of data?
Spoiler My question is the following: Are there any design patterns for representing chainable functions that are for the problem described below? High-Level Decription of the Process I’m currently building an image-processing server, whose functionality is exposed via a web API. Client Behavior Clients first authenticate, then request that one or more analyses be performed […]
How should I represent composeable, associative computations to be repeatedly applied to units of data?
Spoiler My question is the following: Are there any design patterns for representing chainable functions that are for the problem described below? High-Level Decription of the Process I’m currently building an image-processing server, whose functionality is exposed via a web API. Client Behavior Clients first authenticate, then request that one or more analyses be performed […]