Wildfly or jboss 7.1 standalone.xml dtd

I realize this question is not very programming specific, but I am trying to find a description of each tag in the standalone.xml file in wildfly or jboss 7.1 so that I can know about each tag and it will be useful for configuration.

Where can I find a document describing the tags used in the standalone.xml file? The jBoss or Wildfly Administration Guide does not provide all the information.

+3


source to share


3 answers


If you look in $JBOSS_HOME/docs/schema

, there are several schemas that make up the standalone.xml file.



+1


source


James R. Perkins is right. There are several schemas in the $ JBOSS_HOME / docs / schema section that describe the standalone.xml tags. Table https://developer.jboss.org/wiki/JBossDTDs


means the DTD or schema is applicable to what xml. For example, if you are curious about the "logging" subsystem for standalone.xml, look at the file $ JBOSS_HOME / docs / schema / jboss-as-logging_1_1.xsd.
+1


source


you should start with $ JBOSS_HOME / docs / schema / wildfly-config_5_0.xsd, there is a definition of the main types "domain", "host" and "server". Good luck!

+1


source







All Articles