You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: layers/README.md
+51-16
Original file line number
Diff line number
Diff line change
@@ -1,33 +1,40 @@
1
1
---
2
-
title: Layers
2
+
title: Layered Architecture
3
3
category: Architectural
4
4
language: en
5
5
tag:
6
-
- Decoupling
6
+
- Abstraction
7
+
- Decoupling
8
+
- Enterprise patterns
9
+
- Layered architecture
10
+
- Scalability
7
11
---
8
12
13
+
## Also known as
14
+
15
+
* N-Tier Architecture
16
+
9
17
## Intent
10
18
11
-
Layers is an architectural pattern where software responsibilities are divided among the different
12
-
layers of the application.
19
+
The Layered Architecture pattern helps organize applications into groups of subtasks at different levels of abstraction, facilitating independent development and maintenance of each layer.
13
20
14
21
## Explanation
15
22
16
23
Real world example
17
24
18
-
> Consider a website displaying decorated cakes for weddings and such. Instead of the web page
19
-
> directly reaching into the database, it relies on a service to deliver this information. The
20
-
> service then queries the data layer to assimilate the needed information.
25
+
> Imagine constructing a modern high-rise building, which is analogous to using the Layered Architecture pattern in software development. Just as a building is divided into layers such as the foundation, structural floors, residential floors, and the rooftop, each with specific functions and built using different materials and techniques, a software application can be similarly structured.
26
+
>
27
+
> In this analogy, the foundation represents the data layer, responsible for managing database operations. The structural floors are akin to the service layer, which contains business logic and rules. The residential floors parallel the presentation layer, which deals with user interfaces and interactions. Finally, the rooftop could be seen as the API layer, allowing external systems to communicate with the application.
28
+
>
29
+
> Just as each floor in a building is constructed to support the layers above and below, each software layer supports seamless interaction with its neighboring layers while maintaining a degree of independence. This structure allows for easy maintenance and updates, such as refurbishing the interiors (presentation layer) without affecting the underlying structures (business logic and data layers).
30
+
21
31
In plain words
22
32
23
-
> With Layers architectural pattern different concerns reside on separate layers. View layer is
24
-
> interested only in rendering, service layer assembles the requested data from various sources, and
25
-
> data layer gets the bits from the data storage.
33
+
> The Layered Architecture pattern organizes software into hierarchical groups of tasks, each encapsulated in distinct layers that interact with each other, facilitating ease of maintenance, scalability, and clear separation of concerns.
34
+
26
35
Wikipedia says
27
36
28
-
> In software engineering, multitier architecture (often referred to as n-tier architecture) or
29
-
> multilayered architecture is a client–server architecture in which presentation, application
30
-
> processing, and data management functions are physically separated.
37
+
> In software engineering, multitier architecture (often referred to as n-tier architecture) or multilayered architecture is a client–server architecture in which presentation, application processing, and data management functions are physically separated.
31
38
32
39
**Programmatic Example**
33
40
@@ -59,7 +66,7 @@ public interface CakeBakingService {
59
66
}
60
67
```
61
68
62
-
On the top we have our `View` responsible of rendering the cakes.
69
+
On the top we have our `View` responsible for rendering the cakes.
63
70
64
71
```java
65
72
publicinterfaceView {
@@ -79,16 +86,44 @@ public class CakeViewImpl implements View {
This pattern is suitable for structuring applications that can be divided into groups where each group has a specific role or responsibility. Common in enterprise applications, it simplifies dependencies, enhances maintainability, and supports scaling and technology stack segregation.
94
+
86
95
Use the Layers architecture when
87
96
88
97
* You want clearly divide software responsibilities into different parts of the program.
89
98
* You want to prevent a change from propagating throughout the application.
90
99
* You want to make your application more maintainable and testable.
91
100
101
+
## Known Uses
102
+
103
+
* Web applications where the presentation, business logic, and data access layers are distinctly separated.
104
+
* Enterprise systems where core functionalities are isolated from interface applications and databases.
105
+
106
+
## Consequences
107
+
108
+
Benefits
109
+
110
+
* Improved manageability with separation of concerns
111
+
* Easier to update or modify one layer without affecting others
112
+
* Promotes reuse of functionalities.
113
+
114
+
Trade-offs
115
+
116
+
* Potential performance overhead due to layer interaction
117
+
* Complexity in layer management
118
+
* Challenges in designing an effective layer distribution.
119
+
120
+
## Related Patterns
121
+
122
+
*[Model-View-Controller](https://java-design-patterns.com/patterns/model-view-controller/): Shares separation of concerns by dividing application into input, processing, and output. Layered Architecture often implements an MVC within its presentation layer.
123
+
* Service-Oriented Architecture (SOA): Both patterns emphasize modularization but SOA focuses more on distributed services that can be reused across different systems.
124
+
92
125
## Credits
93
126
94
-
*[Pattern Oriented Software Architecture Volume 1: A System of Patterns](https://www.amazon.com/gp/product/0471958697/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=0471958697&linkCode=as2&tag=javadesignpat-20&linkId=e3f42d7a2a4cc8c619bbc0136b20dadb)
127
+
*[Pattern-Oriented Software Architecture Volume 1: A System of Patterns](https://amzn.to/3xZ1ELU)
128
+
*[Clean Architecture: A Craftsman's Guide to Software Structure and Design](https://amzn.to/3UoKkaR)
0 commit comments