user373201
user373201

Reputation: 11435

Switch the default configuration in JBoss AS

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

Answers (2)

davidryan
davidryan

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

Usually you can:

  1. copy any of the configurations that ship with JBoss
  2. customize it
  3. and then when starting the server:

$JBOSS_HOME/bin/run.sh -c xxx

Upvotes: 2

Related Questions