DEV Community

genichm
genichm

Posted on

1 1

Layered Pattern

Layered pattern is the most well known and used, probably everyone uses or used this pattern in application development. This pattern splits the code into layers where each layer has responsibility, upper layers call to underlying layers to execute the operations. For example:

  1. UI layer
  2. Application layer
  3. Data access layer

UI layer calls to the application layer it in turn executes functions from the data access layer which stores the data in some data storage.

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay