0

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?

André
  • 464
  • 4
  • 17

1 Answers1

1

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.

James R. Perkins
  • 16,800
  • 44
  • 60
  • Thanks for your reply. That sounds like a good way to solve this problem. I will use a cli batch script to trigger the deployment. Therefore I had to start a "embed-server". – André Sep 13 '16 at 08:49