Technologies • Getting Started • API Endpoints •
Spring Cloud Playground and Dynamic Connection of Microservices.
- list of all technologies you used
- Java
- Spring Cloud
- Eureka
- Open Feign
- Docker
How to clone your project
git clone https://github.com/w7b/spring-microservices
How to start your project
To build a project with docker
docker compose up --build
Here you can list the main routes of your API, and what are their expected request bodies.
route | description |
---|---|
POST /tasks | send task response details |
REQUEST
{
"title" : "Test task",
"email" : "[email protected]",
"dueDate" : "2025-06-01T13:40:00",
"notified" : false
}
RESPONSE
{
"id": 2,
"email": "[email protected]",
"title": "Test task",
"dueDate": "2025-06-01T13:40:00",
"notified": false
}