-
Notifications
You must be signed in to change notification settings - Fork 22
feat: Implement InventoryResource providing a REST API for inventory management with CRUD operations. #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
…management with CRUD operations.
|
Last commit is Error Handling Implementation |
… with reactive REST.
|
last commit i upgrade some dependencies and quarkus aswell mvnw wrapper and i tested by using quarkus dev its working a like a charm |
… operations, pagination, error handling, and content types.
|
Test coverage added |
|
Implemented Bean Validation (commit message is wrong) |
- Add `productId` field with unique constraint to Inventory entity - Implement `findByProductId` and `existsByProductId` lookup methods - Include `quarkus-smallrye-openapi` dependency for API documentation - Apply OpenAPI annotations to resource endpoints and models
|
add productId support and OpenAPI integration |
Add detailed README.md documenting the RESTful inventory management microservice including features, prerequisites, running instructions, API endpoints with examples, data model, and error handling.
|
README.md |
Integrate Quarkus Cache to optimize read performance for inventory lookups. This change adds caching for GET requests by ID and Product ID, with automatic invalidation on data modification. - Add `quarkus-cache` dependency. - Cache `getById` and `getByProductId` endpoints. - Invalidate caches on create, update, and delete operations. - Add `DELETE /api/inventory/cache` endpoint for manual cache clearing. - Update README with caching configuration and usage details.
|
Integrate Quarkus Cache to optimize read performance for inventory lookups. This change adds caching for GET requests by ID and Product ID, with automatic invalidation on data modification. |
Introduces the CI/CD infrastructure and core application settings required to build, run, and deploy the inventory-quarkus service. - **CI/CD**: Adds a multi-stage Jenkinsfile covering source checkout, validation, build, testing, Docker image creation, and Kubernetes deployment. - **Configuration**: Sets up `application.properties` for PostgreSQL, OIDC (Keycloak), structured JSON logging, and Micrometer metrics. - **Database**: Includes the initial Flyway migration script to define the database schema.
|
multiple updates |
Removes explicit property definitions for fault tolerance (timeout, circuit breaker, retry) and the micrometer JVM binder. Fault tolerance settings are now managed via annotations in the code.
|
move fault tolerance config to annotations |
No description provided.