Skip to content

Files

Latest commit

398eb11 · Apr 2, 2016

History

History
This branch is 2922 commits behind iluwatar/java-design-patterns:master.

layers

layout title folder permalink categories tags
pattern
Layers
layers
/patterns/layers/
Architectural
Java
Difficulty-Intermediate
Spring

Intent

Layers is an architectural style where software responsibilities are divided among the different layers of the application.

alt text

Applicability

Use the Layers architecture when

  • you want clearly divide software responsibilities into differents parts of the program
  • you want to prevent a change from propagating throughout the application
  • you want to make your application more maintainable and testable

Credits