How to deploy an application remotely with JBoss AS ?

Let’s learn how to deploy an application remotely using the latest version of WildFly or JBoss EAP. We will also cover this process for older JBoss installations. Deploying an application remotely with WildFly If you are running WildFly there are several choices for deploying your application remotely.  You can opt for: Web Administration Console Command … Read more

Managing exploded deployments in WildFly

An exploded deployment is an application which is not packaged in a .war, .ear or .jar file but it’s contained in a directory using these extensions (.ear, .war, etc.). Exploded deployments are not deployed by default by WildFly. If a directory with a standard extension (.ear, .war, etc.) is placed in the deployments directory, a … Read more

How to configure a custom JBoss deployment directory

Deploying applications to WildFly is can be achieved through management instruments or by deploying the artifacts in the deploy directory. See the following tutorial to learn more about about both approaches:  How to deploy applications on WildFly In this tutorial we are going to show how to provide a custom directory or URL for deploying … Read more

How to deploy temporarily an application on JBoss ?

The current version of WildFly / JBoss EAP does not provide a way to deploy temporarily your application, so that it is automatically removed when you shut down the server. As an alternative, you can use add a file named <application>.skipdeploy in the deployments folder. This marker file disables auto-deploy of an application while present. … Read more

How do you configure your .war to be deployed after your EJB ?

This tutorial has been written for an old version of JBoss which is now deprecated. We recommend checking this resource to learn how to configure the order of deployment between applications: Simple way to configure JBoss / WildFly deployment order Deployment order configuration for JBoss AS 5 A common requirement for some web application is … Read more

How to deploy an application on JBoss AS

This tutorial has been written for JBoss AS versions 4/5/6 We recommend checking this tutorial for WildFly and JBoss EAP 7: Deploying applications on WildFly using the Web Console and the CLI Also, if you want special focus on remote application deployment, check this article: How to deploy an application remotely with JBoss AS ? … Read more