How to use Camel extensions in Quarkus

Camel is the open source swiss knife framework for integration, with over 300 components allowing the integration between external systems. In this article we will learn how to use Camel extensions for Quarkus to build powerful Java Integrations.

Read more

Getting started with ZGC Garbage collector

This article will discuss the Java ZGC garbage collector and how you can configure and use it to meet your needs in modern Java applications. What is the Java ZGC? The Java ZGC is a scalable low latency garbage collector that is production-ready since Java 15. The ZGC Collector is designed to minimize GC pauses, … Read more

Suspending and resuming WildFly

One useful feature of WildFly is the ability to suspend and resume the server, which allows you to temporarily stop the server from accepting new requests and resume it when needed. This can be useful in a variety of scenarios, such as when you need to perform maintenance on the server or deploy a new application.

In this tutorial, we will take a closer look at the suspend and resume feature of WildFly and show you how to use it from the command line. We will also discuss some of the benefits and potential use cases for this feature.

Read more

What’s new in Jakarta EE 10

Jakarta EE 10 is the first major release of Jakarta EE since the “jakarta” namespace update. Many of the component specifications are introducing Major or Minor version updates that are going to reflect in the implementation APIs. Let’s learn in this article what is new with Jakarta EE 10.

Read more