Software architecture

thumbnail
Design Patterns - Transactional Outbox pattern

In the microservice architecture, many times we need that they communicate with each other by sending messages using a message ...

thumbnail
Domain-Driven Design & Clean Architecture

The Clean Architecture is a set of rules and principles for organizing a code development project, and how all its components i...

thumbnail
Design Patterns - Unit of Work Pattern

The Unit of Work pattern is a design pattern to group one or more operations (usually to the database) in an atomic transaction...

thumbnail
Design Patterns - Static Factory Method Pattern

The static factory method is a creational design pattern to create instances of a class, it works like the factory method, but ...

thumbnail
Domain-Driven Design - Aggregate Root

In Domain-Driven Design an Aggregate Root is the main Entity in an Aggregate, for example, in the ordering agg...

thumbnail
Design Patterns - Repository Pattern

The repository pattern is a design pattern to encapsulate the methods to access to a data source and access to them from any la...

thumbnail
Domain-Driven Design - Aggregates

In Domain-Driven Design an Aggregate is a set of related entities and value objects, for example, in the ordering...

thumbnail
Domain-Driven Design - Entities

In Domain-Driven Design an Entity is an object that represents an object with identity, for example, a person,...

thumbnail
Domain-Driven Design - Value Objects

In Domain-Driven Design a Value Object is an identityless object that represents a property, for example, a name...