In this article we will discuss how to use WildFly Maven plugin to automate the redeployment of applications on WildFly when you apply some changes to the application class files.
Deploy applications
In this section you will learn how to configure application deployment using various management tools such as
- The Command Line Interface (CLI)
- The Web Console
- Your OS Shell.
We also have tutorials showing the differences in Deployment between Standalone mode and Domain mode.
Our article library also includes tutorial for configuring application deployment on older Application Server version, such as JBoss 5.
Examples of jboss-deployment-structure.xml
This tutorial contains some examples of how to configure the file jboss-deployment-structure.xml . This file allows to fine tune the modules of your applications running on WildFly. The advantage of using this file (compared to the Manifest’s entry) is that you can define dependencies across top-level deployments and subdeployments.
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.
How to solve Failed to start service jboss.deployment.unit
In this short article we will learn how to solve a common error which you can hit at deployment time: “failed to start service jboss.deployment.unit”.
Configuring shared libs in an EAR file with WildFly
In this article we will learn what is the correct placement of shared libraries with Enterprise Application running in an EAR file. In the second part of this tutorial we will learn a simple way to change the default lib directory in an ear file.
How to configure JBoss / WildFly deployment order
You can configure JBoss EAP / WildFly deployment order in some simple steps. This article will show you how to do it! Configuring Deployment order within an EAR file If you want to deploy applications within an EAR file with a precise order, then you can use the element named initialize-in-order (available in application.xml 6.0 … Read more
How to solve JBAS014803: Duplicate resource
This quick tutorial discusses how to fix the error “Duplicate resource” which you can find at start up or upon deployment of a resource on WildFly.
How to set the Web Context Path in WildFly
This short article will teach you how to change the Web Context Path for applications running on WildFly or JBoss EAP application server
How to deploy applications on WildFly
This tutorial discusses how to deploy applications on WildFly application server. We can deploy applications on the top of WildFly in several ways: 1. File system copy (standalone mode only) 2. Using the Management Interfaces (Admin Console or CLI) 3. Using Maven to deploy WildFly applications Deploying applications on WildFly using File system deployment File … Read more
How to configure JBoss to disable hot deployment ?
This article will teach you how to enable or disable hot deployment of your applications on WildFly application server. The same concepts apply to JBoss EAP.