java - Virtual deployment directory in jboss in domain mode -
i trying deploy multiple .war files present in external deployment directory.
i tried using standalone mode below configuration in standalone.xml,
<subsystem xmlns="urn:jboss:domain:deployment-scanner:1.1"> <deployment-scanner path="javaproject" relative-to="my.deployment.dir" scan-interval="5000"/> </subsystem>
and path element,
<paths> <path name="my.deployment.dir" path="c:\projectdeployment\standalone\server\project"/> </paths>
with above configuration, can deploy war files present under javaproject directory in standalone mode (without using cli , webconsole of jboss).
so here question,
if want use similar method using domain mode changes have make in domain.xml?
if possible need copy , paste newly build war file in external deployment directory , jboss pick-up changes , restart needed.
thanks in advance.
this not supported in domain mode. need deploy via management api, cli or administration console.
Comments
Post a Comment