An open API service indexing awesome lists of open source software.

https://github.com/juliopuma/crud-service-reactor

CRUD Implementation using Project Reactor to test reactive flows.
https://github.com/juliopuma/crud-service-reactor

crud java java-springboot java17 project-reactor springboot3

Last synced: 8 months ago
JSON representation

CRUD Implementation using Project Reactor to test reactive flows.

Awesome Lists containing this project

README

          

# CRUD service using Project Reactor

CRUD Project with Project Reactor to managing reactive flows. Database was created internally.

Extra: Using Exception Handler using @ControllerAdvice and @ExceptionHandler

* Language: Java 17
* Framework: SpringBoot 3
* Dependency management: Maven 3.6.3

logo
logo
logo

## Postman Collection

Click the link below to download the Postman collection:

[Download Postman Collection](docs/crud-service-reactor.postman_collection.json)

1. Download the file from the link above.
2. Open Postman.
3. Click "Import" in the top left corner.
4. Select the downloaded `crud-service-reactor.postman_collection.json` file.
5. You can now test the API endpoints using the provided examples.

## Dependencies

- spring-boot-starter-webflux
- lombok

## Package

- controllers: Used to define endpoints.
- service: Used to process logic bussines.
- repository: Used to connect with relational databases .
- proxy.client: Implements Classes to connect with other REST Services.
- config: Used to configure the project behaviour.
- model: Used to create simples object like POJOs, DTOs.