Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Enhancing the Quarkus developer experience: New updates for IntelliJ and VS Code tools

September 18, 2024
Mohit Suman Angelo Zerr
Related topics:
Developer productivityDeveloper toolsIDEsJavaQuarkus
Related products:
Developer Toolset

    It's been a while since we last updated our Quarkus support with Quarkus Tools for IntelliJ and Quarkus Tools for Visual Studio Code. Recently, we've been focused on separating our free LSP support from the IntelliJ Quarkus project into a standalone extension, LSP4IJ, which now supports various language servers.

    With the LSP4IJ project now established and increasingly integrated into other IntelliJ plugins, we can shift our focus back to enhancing our Quarkus support. This support offers consistent features across both VS Code and IntelliJ, thanks to the MicroProfile language server augmented with Quarkus-specific capabilities and Qute language servers.

    It took us a year to develop the new LSP4IJ IntelliJ plugin from our LSP support, but it has proven to be a worthwhile investment. This move has facilitated the creation of numerous other IntelliJ plugins built on LSP4IJ and has generated significant interest and contributions from the community.

    Quarkus Tools for IntelliJ 2.0.2

    The version of Quarkus Tools for IntelliJ has been updated from 1.x to 2.x due to the shift of LSP support to the LSP4IJ IntelliJ plugin.

    This new version brings several improvements:

    Enhanced Qute support:

    • Support for Template Records.
    • Support for @CheckedTemplate attributes such as basePath and defaultName.
    • Support for Qute arguments.
    • Improved validation with fewer false positive errors.

    Upgraded Quarkus support:

    • Resolution of system properties and environment variables in  microprofile-config.properties / application.properties.
    • Addition of Workspace symbols for JAX-RS endpoints(#workspace-symbols-for-jax-rs-endpoints).

    Quarkus Tools for Visual Studio Code 1.8.1

    The Quarkus Tools for Visual Studio Code 1.8.1 brings several enhancements:

    Improved Qute support:

    • Support for Template Records.
    • Support for @CheckedTemplate attributes, including basePath and defaultName.
    • Support for Qute arguments.
    • Enhanced validation with reduced false positive errors.

    Enhanced Quarkus support:

    • Resolution of system properties and environment variables in microprofile-config.properties / application.properties.
    • Added support for Reactive Routes.

    Features

    Below are details on some of the new features of Qute and Quarkus.

    Qute support

    Template Records are now supported similarly to existing Type-safe Templates and REST Integration support.

    Figure 1 depicts a demo for IntelliJ Quarkus Tools (same support for VS Code).

    Template Records Support Demo
    Figure 1: Template Records support demo.

    @CheckedTemplate attributes

    You can customize the base path and the HTML file name by using the Qute @CheckedTemplate attributes basePath, and defaultName

    Figure 2 provides a demo for IntelliJ Quarkus Tools (same support for VS Code).

    CheckedTemplate attributes demo
    Figure 2: CheckedTemplate attributes demo.

    Qute arguments

    Qute Arguments is now supported. This support provides completion, validation, and etc. for the special _args keyword and their methods.

    When _args is used in a user tag, other HTML files that reference it no longer report errors for unknown attributes.

    Below is a demo with IntelliJ Quarkus Tools (same support for VS Code) (Figure 3).

    UserTag arguments Demo
    Figure 3: UserTag arguments demo.

    Quarkus support

    The following improvements have been made to Quarkus support (below).

    application.properties

    System properties/environment variables are resolved and appear in the code editor as inlay hints, as shown in Figure 4.

    Resolve system properties/environment demo
    Figure 4: Resolve system properties/environment demo.

    Reactive Routes support

    Reactive Routes now include support for displaying URLs with CodeLens. Figure 5 depicts a demo with VS Code Quarkus (same support for IntelliJ).

    VSCode Route Demo
    Figure 5: VSCode Route demo.

    Workspace symbols for JAX-RS endpoints

    As LSP Workspace Symbol has been implemented in LSP4IJ, we can now provide the capability to navigate easily to the JAX-RS endpoints by using standard IntelliJ Symbols. 

    Below is a demo with IntelliJ Quarkus Tools (same support for VS Code) (Figure 6).

    Workspace Symbol Demo
    Figure 6: Workspace Symbol demo.

    Getting support

    If you encounter any bugs, confusing commands, or unclear documentation, or if you would like to propose a feature request, you can submit your feedback by:

    • Filing your issue directly on GitHub (IntelliJ), GitHub (VS Code).
    • Downloading the extension from VSCode and JetBrains Marketplace and providing extension feedback/reviews.

    Conclusion

    We hope you find these new releases useful and that they address your needs. While we continue to improve Quarkus and Qute support in terms of performance, bug fixes, and features. Here are some areas we’re actively working on:

    • The current collection of MicroProfile/Quarkus properties is not flawless, which can lead to false positive errors in microprofile-config.properties and application.properties, as well as some performance issues. We are collaborating closely with the Quarkus team on this through the Working Group - Quarkus Config and IDEs.
    • Property value validation has limitations due to the MicroProfile converter system, which is not fully supported by the MicroProfile language server.
    • We are also working on integrating Quarkus Ollama to enhance support for configuring Quarkus properties.

    Related Posts

    • Getting started with the OpenShift Toolkit for VS Code and IntelliJ

    • JetBrains IntelliJ Red Hat OpenShift extension provides debug support for OpenShift components

    • YAML Language Server and the Extension for VS Code

    • Using VS Code to develop Spring Boot-based Camel and Red Hat Fuse projects

    • Supersonic, Subatomic gRPC services with Java and Quarkus

    • Securely connect Quarkus and Red Hat Data Grid on Red Hat OpenShift

    Recent Posts

    • MCP servers vs. skills: Choosing the right context for your AI

    • How to route external and local LLMs with Models-as-a-Service

    • Protect data offloaded to GPU-accelerated environments with OpenShift sandboxed containers

    • Case study: Measuring energy efficiency on the x64 platform

    • How to prevent AI inference stack silent failures

    What’s up next?

    Download Understanding Quarkus, the essential guide to mastering Quarkus. From learning basic terminology to running, testing, and optimizing applications, you'll explore seamless data interaction, microservice observability, and effective testing in both JVM and Native modes.

    Get the e-book
    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.