Skip to content

Repositório destinado ao estudo da arquitetura limpa (Clean Architecture)

Notifications You must be signed in to change notification settings

Douglasproglima/clean-arch-mvc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Logo DevRise Week

🚀 Clean Architecture Or Hexagonal Architecture 🚀

Motivation


Learn how to design modular applications

  • Learning how to design modular applications will help you become a better engineer. Designing modular applications is the holy grail of software architecture, it is hard to find engineers experienced in designing applications which allows adding new features at a steady speed.

Explore the .NET Core features

  • .NET Core brings a sweet development environment, an extensible and cross-platform framework. We will explore the benefits of it in the infrastructure layer and we will reduce its importance in the application and domain layers. The same rule is applied for modern C# language syntax.

Hexagonal Architecture Style


The general idea behind Hexagonal architecture style is that the dependencies (Adapters) required by the software to run are used behind an interface (Port).

The software is divided into Application and Infrastructure in which the adapters are interchangeable components developed and tested in isolation. The Application is loosely coupled to the Adapters and their implementation details.

Ports

Interfaces like ICustomerRepository, IOutputPort and IUnitOfWork are ports required by the application.

Adapters

The interface implementations, they are specific to a technology and bring external capabilities. For instance the CustomerRepository inside the EntityFrameworkDataAccess folder provides capabilities to consume an SQL Server database.

Ports and Adapters

The Left Side

Primary Actors are usually the user interface or the Test Suit.

The Right Side

The Secondary Actors are usually Databases, Cloud Services or other systems.

Onion Architecture Style

Very similar to Ports and Adapters, I would add that data objects cross boundaries as simple data structures. For instance, when the controller execute a use case it passes an immutable Input message. When the use cases calls a Presenter it gives an Output message (Data Transfer Objects if you like).

Clean Architecture Style

The Clean Architecture style focus on a loosely coupled implementation of use cases and it is summarized as:

  1. It is an architecture style that the Use Cases are the central organizing structure.
  2. Follows the Ports and Adapters pattern.
    • The implementation is guided by tests (TDD Outside-In).
    • Decoupled from technology details.
  3. Follows lots of principles (Stable Abstractions Principle, Stable Dependencies Principle, SOLID and so on).

Layers Definition This Project


Relation and dependency between projects: Dependecy Projects

Layer Domain or Entities Domain Layer

Layer Application or Use Cases Domain Application

Layer Application with Services to Mapper and Convertion Objects Domain Application

Layer Infra Infra Layer

Layer Infra.Data Domain Infra.Data

Layer Domain X Infra.Data Domain Infra.Data

Layer Infra.IoC Domain Infra.IoC

Layer Web.UI Domain Infra.IoC

Controllers e Views

WebUI

Views: Bootstrap

WebUI

CQRS - Command Query Responsability Separation


Concerns

CQRS

CQRS - How to use

CQRS

Implementation And When Not To Use

CQRS

CQRS And Use Mediator Pattern

CQRS

CQRS Implementation Class

CQRS

CQRS Handlers

CQRS

CQRS Handlers X Mediator Pattern X Requests

CQRS

CQRS Handlers X Mediator

CQRS

CQRS Fluxo das Requests

CQRS

CQRS Comparando os Fluxos (Sem/Com o CQRS)

CQRS

CQRS Considerações finais

CQRS

CQRS

Identity Com Clean Archtecture


Solução/Proposta

Identity

Autenticação

Identity

Autorização/Atributos

Identity

Recursos p/ Autorização

Identity

Implementação

  • Adicionar ao projeto CleanArchMvc.Infra.Data as referências:
    <PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
    <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.17" />
  • Criar a classe ApplicationUser que herda de IdentityUser
    public class ApplicationUser :IdentityUser { }
  • Alterar a herança da classe ApplicationDbContext para: public class ApplicationUser :IdentityUser { }
    public class ApplicationDbContext : IdentityDbContext<ApplicationUser> { ... }
  • Acessar o Nuget Packeg Console, irá criar o arquivo de migration referente ao Identity
$ add-migration AddIdentityTables
  • Nuget Packeg Console, rodar o comando abaixo para aplicar a migration criada acima para refletir no DB.
$ update-database

Diagrama das Tabelas do Identity

Identity

Implementação

Identity

Fluxo

Identity

WEB API RESTFul


RESTFul - Representation State Transfer

Identity

Principais Verbos HTTP

Identity

Grupo de Status e Principais Status Codes

Identity

JSON Web Tokens - JWT


Conceitos


jwt

Constituição - header.payload.signature

jwt

Montagem

jwt

Fluxo

jwt

Vantagens

jwt

Recursos Utilizados

jwt

Implementações

jwt

Roteiro

jwt

Usando JWT

jwt

Migração .NET 5 para .NET 6


net6

Todos os créditos são do professor @Macorrati | Feito com ❤️ por Douglas Lima Entre em contato!

About

Repositório destinado ao estudo da arquitetura limpa (Clean Architecture)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages