HowTo change JBoss ear/war deploy directory
If your IDE and/or maven builds and ear/war in /home/tcollinsworth/svn/someApp/someProj/target/blah
In $JBOSS_HOME/server/ServerName/conf/jboss-service.xml add:
From here
And here
Web apps require changing profile.xml
In $JBOSS_HOME/server/ServerName/conf/jboss-service.xml add:
<attribute name="URLs">
deploy/,file:/home/tcollinsworth/svn/someApp/someProj/target/blah
</attribute>
From here
And here
Web apps require changing profile.xml
Comments
working if we do as per below link.
http://www.mastertheboss.com/jboss-application-server/204-jboss-deployment-directory-configuration.html
Srinivas