Reputation: 337
I downloaded JBoss AS 7 and trying to run my application in it. But I couldn't find server.xml
to change settings. Previously I used JBoss AS 4.2.2
and have server.xml
in <jboss_home>\server\default\deploy\jboss-web.deployer
. Can anyone help me how to configure AS 7?
Upvotes: 5
Views: 11607
Reputation: 46904
You should avoid touching the config XMLs yourself. Rather let it up to domain controller and host controller.
JBoss AS 7 has many ways to be managed. At least these are those I know of:
Programatical:
REST-like API - you send commands over HTTP.
User Interface:
RHQ project
Current location of emerging JBoss AS 7 Documentation: https://docs.jboss.org/author/display/AS7/Documentation
Upvotes: 3
Reputation: 958
The directory layout has changed. See here: https://docs.jboss.org/author/display/AS7/Getting+Started+Guide
Most of the stuff is in $JBOSS_HOME/standalone/configuration/standalone.xml or the "domain/**" folders depending on which config/server you are running.
If you want to configure the web container specifically then see here: https://docs.jboss.org/author/display/AS7/Admin+Guide#AdminGuide-Containerconfiguration
..and modify the standalone.xml file.
Upvotes: 6