惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
Recent Announcements
Recent Announcements
B
Blog
D
Docker
V
V2EX
GbyAI
GbyAI
L
LangChain Blog
博客园 - Franky
U
Unit 42
T
The Blog of Author Tim Ferriss
A
About on SuperTechFans
博客园 - 【当耐特】
Google DeepMind News
Google DeepMind News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Vercel News
Vercel News
博客园_首页
D
DataBreaches.Net
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
量子位
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
3 Domain-Centric Architectures Every Software Developer S...
Digital Craf · 2026-05-04 · via DEV Community

SOFTWARE ARCHITECTURE & REFACTORING

3 Domain-Centric Architectures Every Software Architect Should Know

The first concern of the architect is to make sure that the house is usable; it is not to ensure that the house is made of brick. — Uncle Bob

3 Domain-Centric Architectures Every Software Developer Should Know cover image

Domain

The expression domain is occurring in software bibles for a very long time now and is heavily discussed in the book Domain-Driven Design by Eric Evans. The domain is the real-world context which you are attempting to solve by writing a piece of software. Simply said, the domain is the thing why software exists and is about.

Evans divides the domain into three subdomains.

Core Domain

The core domain represents a competitive advantage and the software's reason for being. It is a hearth of the software with the most fundamental business rules, use cases, and domain models. It usually is the smallest part of the codebase. In other words, it is the most critical 20% part of the software.

Supporting Domain

Supporting domains are supporting subsystems of software. The core can still exist without them but does not makes it alone to its users. There can be multiple supporting domains in one system. For example, the supporting domain is for the core domain, the same thing as invoicing for Amazon.

Generic Domain

A generic domain is the least custom part and the least important part of the software. It is not specific to your domain, and it is widespread in other systems. I am currently working on an employee's timesheets information system, and the generic domain for this software is an external time tracker for each of the employees.

Illustration

Left: Common domain, Right: Concrete e-shop example

Summary

It is important to decide what your core domain is and focus your development resources here from a business perspective.

Domain-Centric Architecture

Now when we know what the domain is, you can logically derive that Domain-Centric Architecture puts the domain into the center. Each software architect has a huge responsibility for proper recognition of what is an essential use case and what is just an implementation detail.

Let's pretend that you are buying the house. What is essential for your choice, and what is in second place?

From my perspective, space and usability are the most fundamental reasons for buying a new house. Ornamentation and building material may come right after that and change my decision, but when I am looking at real estate offers online, I am looking at the space and usability for my needs first.

Illustration

Hexagonal Architecture

Alistair Cockburn invented hexagonal Architecture in 2005. Also known as Ports and Adapters Architecture. Few authors marked the Hexagonal Architecture as an origin of Microservices Architecture.

It is a plug-in system that consists of multiple loosely coupled components which you can connect to the core. The advantage of such division is in easy exchange of each component.

Illustration

Source and Credits of image: [https://ebrary.net/85161/computer\_science/hexagons\_layers](https://ebrary.net/85161/computer_science/hexagons_layers)

Components communicate with each other via exposed public interfaces(ports). Such interfaces are typically used for notifications or database querying and storing.

Adapters are the glue between components and the outside world. More adapters can be glued to one port. For example, Azure deploying can be managed through CLI, web portal, or Windows PowerShell.

Onion Architecture

Founded by Jeffrey Palermo in 2008. The perspective of Onion architecture is to provide better testability, maintainability, and dependability. It is an architecture based on the Inversion of Control Principle. It is biased towards Object-oriented programming.

Illustration

Source and Credits of the image to [CodeGuru](https://codeguru.com)

The architecture consists of multiple concentric layers interfacing towards the core domain, moving all coupling towards the center.

Domain Layer

In this layer, you will find all business and behavioral objects. It also contains the domain interfaces. The domain layer can't have any dependency. On the contrary, other layers should depend on the domain layer.

Repository Layer

This is an abstraction for saving and retrieving data from persistence. The layer is also mapping data from persistence to business entities. If you are not familiar with the Repository Pattern, here is the medium post from my friend Sena Kilicarslan.

Repository Pattern Implementation in ASP.NET Core

Service Layer

Consists of interfaces of common operations. It provides and encapsulates the communication between the UI Layer and Repository Layer. Also, it can hold a business logic for an entity.

UI Layer

This is the most outer layer. Here you will find the implementation of the dependency injection principle. It can be a web application, unit test project, or web API.

Pros

  • Flexible, sustainable, and portable architecture.
  • No need to create a common and shared project.
  • It can be quickly tested.
  • Coupling towards the center.

Cons

  • It is not an easy architecture for beginners.
  • Interfaces and abstractions are heavily used, and move through code can be confusing.
  • Architects mostly messed up, splitting responsibilities between layers.

Clean Architecture

Robert C. Martin, also known as Uncle Bob, invented Clean Architecture in 2012. The architecture is based on the Separation of Concerns principle. It's achieving the separation by dividing the software into layers. The architecture is easily testable, independent of UI, database, or any external agency.

Illustration

Source and credits of image: [https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html](https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html)

The architecture consists of concentric circles that differ in areas of software. The more outer the circle is, the higher level of software it is. Outer circles are mechanisms, and inner circles are policies.

Source code dependencies can only point inwards. Anything declared in the outer circle must not be mentioned in the inner circle, including classes, functions, and variables.

Entities

The Entities layer encapsulates business rules. It can be an object with methods or a set of data structures and functions. It encapsulates the most general high-level rules, also known as Domain.

Use cases

These are application-specific business rules. Here you implement all of the use cases of the system. Rules do not affect the entities. The layer is not affected by externalities such as database or UI.

Interface adapters

This layer is responsible for converting data from use-cases and entities to format for an external agency. Typical usage is the MVC architecture of GUI. Here is where data is converted from Entities to database tables vice versa. The layer's main goal is a conversion from an internal form of data to an external form.

Frameworks & Drivers

The outermost layer. It is composed of glue code for every external agency, such as a database or web framework.

Summary

Each of the listed architecture works the same. They all have the Domain in the center wrapped by Application Layer as use-cases, and Persistence, Presentation, and Infrastructure in the outer circle represent the implementation details pointing towards the center.

Pros

Cons

  • Change is difficult.
  • Requires more thought.
  • Initial higher cost.

Sources

Related Reading


Subscribe to Digital Craft Workshop on Substack