Separation of Concerns
Separate distinct aspects of an issues into components. Each component shall resolve a part of the problem on its own (therefore this principle is based on Divide et Impera). Responsibilities must be considered; each element must have a single responsibility – in each and every layer. Functional and technical abstractions are explicitely detached. Modularity of the system is defined, by the dependency of building blocks within the system.
Example
Solution Architecture of a service can be layered technically and functionally on multiple levels:
2018-10-15%20Separation%20of%20Concerns%20Sonargraph.PNG
As illustrated on the left side, package layering can come into place as part of software architecture. Architects utilize Domain Sepcific Language (DSL) to convert a technical model into a functional layer and put it on top of given classes. This way clean application-internal communication flows can be visualized. A brief introduction can be found at blog.hello2morrow.com.
2018-10-15%20Separation%20of%20Concerns%20Domain%20Layering.PNG
The same technique can be utilized for shifting a technical package layer into cross-functional components to describe functional flows within an application for more complex scenarios.
2018-10-15%20Separation%20of%20Concerns%20Versioning.PNG
In case of multi-versioned services or components within a service, e.g. shared libraries, communication flows can also be visualized. This technique can also be evaluated for version-controlling in a given test or production environments to take countermeasures against compatibility issues.