Schichtenarchitektur (EN)

Concept

An architectural pattern that divides an application into horizontal layers with defined interfaces

Architecture

flowchart TD   A[Präsentationsschicht] --> B[Anwendungsschicht]   B --> C[Datenzugriffsschicht]   C --> D[Datenbank]      subgraph Schichtenarchitektur     direction TB     A     B     C     D   end 

In Context

  • Typically used together with MVC (Model-View-Controller)
  • Related to: Microarchitecture, N-tier architecture, Service-oriented architecture
  • Example use: Enterprise applications, web applications, mobile apps
Quelle: AI Generated