Reputation: 524
WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final): I am searching for a possibility to trigger the deployment of my Java EE application (packed as EAR file), without starting the WildFly server or using the deployment-scanner. Is it possible to add the ear file to a configuration file, so that the server start the deployment of my application at the first time the server starts?
Upvotes: 0
Views: 121
Reputation: 17840
The server has to be started to deploy anything. You can use offline CLI to deploy the content. This wouldn't actually process the deployment until the server has been restarted.
Upvotes: 1