பொருள் அளவிலான வடிவமைப்பு முறைகளுக்கு அப்பால், கட்டடக்கலை முறைகள் பயன்பாடுகளின் உচ்চ-அளவிலான கட்டமைப்பை வரையறுக்கின்றன — layered, hexagonal (ports and adapters), clean architecture, மற்றும் event-driven போன்றவை. அவை பொதுமைப்பாட்டு, சோதனைக்கு ஏற்ற தன்மை மற்றும் நমনीयता வேண்டுபோதே முழு முறைமைகளை ஒரு முறையாக ஏற்பாடு செய்கின்றன.
Layered (n-tier) architecture
LAYERED → organize the app into horizontal LAYERS, each with a responsibility:
PRESENTATION (UI) → APPLICATION/business logic → DATA ACCESS → DATABASE
→ each layer depends only on the layer below; clear separation
✓ simple, common, organized ✗ can become rigid; layers can leak; less flexible
