Quarkus Plugins
Explore how Quarkus uses a robust system of plugins to include only necessary features in your application. Understand how to list, add, and configure extensions using Quarkus developer tools and CLI. Learn to integrate external libraries like Log4j when native extensions are unavailable to enhance your application's capabilities.
We'll cover the following...
We'll cover the following...
Introduction
Quarkus offers support for many use cases, such as creating endpoints, accessing databases, or reactive programming. Including all the features by default can create a problem because we can end up adding features that are not required.
To solve this issue, the Quarkus team developed a robust system of plugins (extensions). This way, we only use the ones we need.
Handling extensions
With the help of ...