Clustering means that when your application is running on a server, it can continue its task on another server exactly at the same point it was at, without any manual failover. This means that the application’s state is replicated across cluster members.
F.Marchioni
Coding a JMS client to an Artemis JMS cluster
This tutorial demonstrates how to code a remote JMS client application which connects to an Artemis AMQ Broker and how to balance connections on the server side.
How to print logs in JSON format in WildFly
This article discusses the configuration you can apply in WildFly to enable logging in JSON format. We will learn how to do that natively in WildFly or using a Log4j custom configuration. Strategies for logging in JSON There are several use cases in which logging in JSON format can be useful. For example: Use cases … Read more
How to compress logs in WildFly
This article shows how to enable logs compression in WildFly by setting the appropriate suffix in your Periodic Rotating File Handler. In the second part of this tutorial we will learn how to compress logs using Log4j instead.
How to set the SameSite attribute in Java Web applications
This short article describes how you can set the SameSite property in HTTP Cookies for Web applications, with special focus on WildFly‘s Web server, which is Undertow.
Getting started with ActiveMQ Artemis
In this tutorial, we will cover the installation process, configuration options, and key concepts of ActiveMQ Artemis. We will walk you through the steps to set up a basic messaging system, demonstrate message publishing and consuming, explore advanced features, and share best practices along the way. Let’s dive into the world of ActiveMQ Artemis and unlock its potential for your messaging needs!
Which is WildFly latest version?
This article will help you to find the latest version of WildFly application server and it is automatically updated after each WildFly new version WildFly latest version The latest version of WildFly Application server – as of – is version . You can download the latest version of WildFly from the official site: https://www.wildfly.org/downloads/ Alternatively, … Read more
Using Data Volume Containers with Docker
Docker volumes provide a convenient way to persist data generated by Docker containers. Volumes can be shared across containers, making them ideal for scenarios where data needs to be stored and accessed even when containers are stopped or recreated. In this tutorial, we will explore various commands and techniques for working with Docker volumes. Step … Read more
Solving Timeout waiting for service container stability
In some scenarios, typically container applications, it is quite common to hit the error “WFLYCTL0348: Timeout after [300] seconds waiting for service container stability“. This article will guide through the steps to find the root cause and solve the issue.
Jakarta Persistence 3.1 new features
This tutorial introduces Jakarta Persistence API 3.1 as a standard for management of persistence and O/R mapping in Java environments. We will discuss the headlines with a simple example that you can test on a Jakarta EE 10 runtime. New features added in Jakarta Persistence 3.1 There are several new features available in Jakarta Persistence … Read more