Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      CodeSOD: A Unique Way to Primary Key

      July 22, 2025

      BrowserStack launches Figma plugin for detecting accessibility issues in design phase

      July 22, 2025

      Parasoft brings agentic AI to service virtualization in latest release

      July 22, 2025

      Node.js vs. Python for Backend: 7 Reasons C-Level Leaders Choose Node.js Talent

      July 21, 2025

      The best CRM software with email marketing in 2025: Expert tested and reviewed

      July 22, 2025

      This multi-port car charger can power 4 gadgets at once – and it’s surprisingly cheap

      July 22, 2025

      I’m a wearables editor and here are the 7 Pixel Watch 4 rumors I’m most curious about

      July 22, 2025

      8 ways I quickly leveled up my Linux skills – and you can too

      July 22, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      The Intersection of Agile and Accessibility – A Series on Designing for Everyone

      July 22, 2025
      Recent

      The Intersection of Agile and Accessibility – A Series on Designing for Everyone

      July 22, 2025

      Zero Trust & Cybersecurity Mesh: Your Org’s Survival Guide

      July 22, 2025

      Execute Ping Commands and Get Back Structured Data in PHP

      July 22, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

      July 22, 2025
      Recent

      A Tomb Raider composer has been jailed — His legacy overshadowed by $75k+ in loan fraud

      July 22, 2025

      “I don’t think I changed his mind” — NVIDIA CEO comments on H20 AI GPU sales resuming in China following a meeting with President Trump

      July 22, 2025

      Galaxy Z Fold 7 review: Six years later — Samsung finally cracks the foldable code

      July 22, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Development»Simplify Cloud-Native Development with Quarkus Extensions

    Simplify Cloud-Native Development with Quarkus Extensions

    June 6, 2025

    The gradients that developers in the modern world experience when building cloud native applications often include the challenge of figuring out the right set of libraries and integrations to use. Quarkus alleviates this pain point and makes this experience a more seamless and faster experience to develop thanks to the rich set of extensions built into the Quarkus ecosystem. Extensions are pre-integrated capabilities that help to maximize developer delight and runtime performance. In my previous blog, I discussed how Quarkus live coding enhances the dev experience . Today, let’s dive deeper into Quarkus Extensions .

    Why Extensions Matter

    The traditional layers of a Java stack often include some manual configuration and glue code to piece together the various libraries, as well as interceptors that need to be integrated too. Quarkus changes the game by providing extensions that are:

    • Optimized for build time and runtime performance

    • Preconfigured to reduce boilerplate

    • Integrated seamlessly with Quarkus dev services

    • Compatible with native compilation via GraalVM

    This means you have less setup, faster feedback loops, and more time to write business logic.

    Top Extensions to Explore

     RESTEasy Reactive

    Create RESTful APIs with minimal configuration and blazing-fast performance. Quarkus supports both classic RESTEasy and the newer RESTEasy Reactive, which is designed for reactive programming models.

    @Path("/hello")
    public class HelloResource {
        @GET
        public String hello() {
            return "Hello from Quarkus!";
        }
    }
    

    Hibernate ORM with Panache

    Panache simplifies JPA by reducing boilerplate code and making your data layer expressive and concise.

    @Entity
    public class Person extends PanacheEntity {
        public String name;
        public static Person findByName(String name) {
            return find("name", name).firstResult();
        }
    }
    

    Kubernetes & OpenShift

    Quarkus offers native support to generate deployment YAMLs, making it cloud-native out of the box.

    ./mvnw clean package -Dquarkus.kubernetes.deploy=true

    You can also configure deployment details using application properties like:

    quarkus.kubernetes.name=my-app
    quarkus.kubernetes.replicas=3

    SmallRye (MicroProfile)

    Need configuration, health checks, metrics, or OpenAPI? Just add the right SmallRye extension.

    ./mvnw quarkus:add-extension -Dextensions="smallrye-health"

    Then add a health endpoint:

    @Health
    @ApplicationScoped
    public class LivenessCheck implements HealthCheck {
        @Override
        public HealthCheckResponse call() {
            return HealthCheckResponse.up("I'm alive!");
        }
    }
    

    Getting Started

    Adding extensions is a breeze using the Quarkus CLI or Maven plugin:

    quarkus ext add 'hibernate-orm-panache'

    Or:

    ./mvnw quarkus:add-extension -Dextensions="rest-easy-reactive, kubernetes"

    Conclusion

    The Quarkus Extensions are a great way to include common features in your application without worrying about how all the complicated pieces fit together. If you’re building REST APIs, integrating with databases, deploying Kubernetes applications, there is likely an extension that can help. It is a very exciting time if you’re trying to upgrade your Java technology stack for the cloud.

    Source: Read More 

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleBetter CSS Shapes Using shape() — Part 3: Curves
    Next Article TypeBridge – zero ceremony, compile time rpc for client and server com

    Related Posts

    Development

    GPT-5 is Coming: Revolutionizing Software Testing

    July 22, 2025
    Development

    Win the Accessibility Game: Combining AI with Human Judgment

    July 22, 2025
    Leave A Reply Cancel Reply

    For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

    Continue Reading

    CVE-2025-46525 – MSMitley WP Cookie Consent Stored Cross-Site Scripting Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    Citrix NetScaler ADC and Gateway Vulnerability Actively Exploited in the Wild

    Security

    CVE-2025-6499 – Apache vstakhov libucl Heap-Based Buffer Overflow

    Common Vulnerabilities and Exposures (CVEs)

    DOOM: The Dark Ages is already on sale ahead of its release next week — Rip and tear into savings with this deal

    News & Updates

    Highlights

    CVE-2025-44614 – Tinxy WiFi Lock Controller Plaintext Storage Vulnerability

    May 30, 2025

    CVE ID : CVE-2025-44614

    Published : May 30, 2025, 3:15 a.m. | 1 hour, 48 minutes ago

    Description : Tinxy WiFi Lock Controller v1 RF was discovered to store users’ sensitive information, including credentials and mobile phone numbers, in plaintext.

    Severity: 0.0 | NA

    Visit the link for more details, such as CVSS details, affected products, timeline, and more…

    CVE-2025-4175 – AlanBinu007 Spring-Boot-Advanced-Projects Path Traversal Vulnerability

    May 1, 2025

    The Hidden Risks of SaaS: Why Built-In Protections Aren’t Enough for Modern Data Resilience

    June 26, 2025

    ChatGPT’s subscribers and revenue soar in 2025 – here’s why

    April 2, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.