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.
- Host: GitHub
- URL: https://github.com/juliopuma/crud-service-reactor
- Owner: JulioPuma
- Created: 2024-08-28T05:28:43.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-28T05:55:46.000Z (about 1 year ago)
- Last Synced: 2025-01-24T09:13:27.876Z (10 months ago)
- Topics: crud, java, java-springboot, java17, project-reactor, springboot3
- Language: Java
- Homepage:
- Size: 84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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

## 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.