Skip to content

MGMAdvance/treinamentocleanarch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Treinamento com Clean Architecture

Treinamento inicial sobre Clean Architecture em aplicação Spring Boot, todas as camadas possuem sua propria documentação e classes reais para se usar de exemplo nos seus estudos.

Java 1.8 HitCount License

Estrutura de pastas

Treinamento em andamento, alguns links não funcionam pois não existem por enquanto.

Estrutura do projeto

.
├── src
│   ├── main
│   │   ├── java
│   │   │   └── br
│   │   │       └── com
│   │   │           └── treinamento
│   │   │               └── cleanarch
│   │   │                   ├── configuration
│   │   │                   │   └── exception
│   │   │                   │       └── entity
│   │   │                   ├── core
│   │   │                   │   ├── entity
│   │   │                   │   ├── gateway
│   │   │                   │   └── usecase
│   │   │                   ├── dataprovider
│   │   │                   │   ├── entity
│   │   │                   │   ├── feign
│   │   │                   │   ├── mapper
│   │   │                   │   └── repository
│   │   │                   └── entrypoint
│   │   │                       ├── entity
│   │   │                       └── mapper
│   │   └── resources
│   │       ├── static
│   │       └── templates
│   └── test
│       └── java
│           └── br
│               └── com
│                   └── treinamento
│                       └── cleanarch
└...