0% found this document useful (0 votes)
19 views2 pages

Microservices Structure

The document outlines the structure of a microservices project, specifically detailing the 'customer' microservice. It includes the organization of files such as Java classes, resources, and configuration files within the project directory. Additionally, it mentions the presence of a Docker Compose file and Maven configuration files for project management.

Uploaded by

Yanet
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views2 pages

Microservices Structure

The document outlines the structure of a microservices project, specifically detailing the 'customer' microservice. It includes the organization of files such as Java classes, resources, and configuration files within the project directory. Additionally, it mentions the presence of a Docker Compose file and Maven configuration files for project management.

Uploaded by

Yanet
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Microservices structure

microservices tree
.
├── customer
│ ├── [Link]
│ ├── src
│ │ ├── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ └── amigoscode
│ │ │ │ └── customer
│ │ │ │ ├── [Link]
│ │ │ │ ├── [Link]
│ │ │ │ ├── [Link]
│ │ │ │ ├── [Link]
│ │ │ │ └── [Link]
│ │ │ └── resources
│ │ │ ├── [Link]
│ │ │ └── [Link]
│ │ └── test
│ │ └── java
│ └── target
│ ├── classes
│ │ ├── [Link]
│ │ ├── [Link]
│ │ └── com
│ │ └── amigoscode
│ │ └── customer
│ │ ├── Customer$[Link]
│ │ ├── [Link]
│ │ ├── [Link]
│ │ ├── [Link]
│ │ ├── [Link]

Microservices structure 1
│ │ └── [Link]
│ ├── [Link]
│ ├── generated-sources
│ │ └── annotations
│ ├── maven-archiver
│ │ └── [Link]
│ └── maven-status
│ └── maven-compiler-plugin
│ ├── compile
│ │ └── default-compile
│ │ ├── [Link]
│ │ └── [Link]
│ └── testCompile
│ └── default-testCompile
│ └── [Link]
├── [Link]
├── [Link]
└── [Link]

Microservices structure 2

You might also like