Reputation: 11435
I am new to JBoss Application Server. I am using version 5. I created a copy of the default dir and renamed it to say xxx and deleted all the contents of deploy folder and put just one war file. How do i tell jboss to use xxx instead of default.
Thanks
Upvotes: 1
Views: 116
Reputation: 2305
If you want to check out the current version, the deployment methodology of the JBoss Application Server has evolved with the release of AS7. You can download AS7 on the JBoss site, and you can read about configuration in the Getting Started Guide.
The documentation for AS5, including configuration, can be found here.
Upvotes: 0
Reputation: 4941
Usually you can:
$JBOSS_HOME/bin/run.sh -c xxx
Upvotes: 2