The English version of quarkus.io is the official project site. Translated sites are community supported on a best-effort basis.

Quarkus Tools for IntelliJ 1.8.0 released!

We are very pleased to announce the 1.8.0 release of Quarkus Tools for IntelliJ. This release adds support for CodeLens for REST endpoints and enhances MicroProfile Fault Tolerance and Metrics supports.

Codelens

When editing a resource class while the current Quarkus application is running in development mode (./mvnw compile quarkus:dev or ./gradlew quarkusDev), there are now CodeLenses that provide the URL for the REST endpoints.

This feature takes into account the path name and the HTTP server port from your application.properties file in order to create the URL.

Clicking on the CodeLens URL will open the URL in your default browser.

quarkus tools1

Microprofile Fault Tolerance

Methods referenced in @Fallback(fallbackMethod) are validated:

quarkus tools2

Activating code completion on the @Fallback(fallbackMethod) value will get the list of available methods being proposed:

quarkus tools3

MicroProfile Metrics

Invalid use of the @Gauge annotation is now reported:

quarkus tools4

Moving Forward

If you have any questions, suggestions or feedback, by all means please open an issue.

Thank you for reading and stay tuned for the next release!