Deploy a single EAR in JBOSS EAP 6.3 -
i need deploy ear in jboss eap6.3 don't want place in folder , let deployment-scanner me.
is there way mention ear file need deploy rather whole directory?
you can deploy ear using jboss command line interface (cli):
$jboss_home/bin/jboss-cli.exe --connect --controller=127.0.0.1:9999 --user=manager --password=password deploy path/to/your.ear this can scripted if required. undeploying same:
$jboss_home/bin/jboss-cli.exe --connect --controller=127.0.0.1:9999 --user=manager --password=password undeploy your.ear
Comments
Post a Comment