What problem does it solve?
It solves the problem of teams repeatedly reinventing Quarkus architecture and production-ready implementation patterns, leading to inconsistent code, slow startup behavior, and fragile integrations.
Core Features & Use Cases
- Quarkus build-first structure: promotes build-time configuration to achieve faster startup and predictable runtime behavior.
- CDI + RESTEasy Reactive idioms: provides scoped beans and clean JAX-RS endpoint patterns with transactions and validation.
- Production integration patterns: includes exception mapping, Panache repository usage, MicroProfile REST Client wiring, and fault tolerance with retries/circuit breakers/timeouts.
- Operational readiness: standardizes liveness/readiness health checks, configuration profiles, and optional Lambda deployment wiring.
- Dev productivity: enables dev mode workflows with hot reload and Dev UI.
Quick Start
Tell the AI to generate a Quarkus project skeleton for a new Order API using CDI services, RESTEasy Reactive endpoints, Panache repositories, a MicroProfile REST Client with retries and circuit breaker, and liveness/readiness health checks.