Jboss-web.xml

From NovaOrdis Knowledge Base
Revision as of 03:38, 16 June 2016 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

Internal

System Properties Usage

jboss-web.xml supports the usage of system properties, whose references will be replaced at deployment time with values defined in the application server's JVM. As an example, the name of the cache container and the cache name can be specified as system properties as follows:

...
<replication-config>
    <cache-name>${app.cache.container.name}.${app.cache.name}</cache-name>
    ...
</replication-config>
...

where app.cache.container.name and app.cache.name system properties can be defined in the system-properties section of the application server configuration file, or externally with:

-Dapp.cache.container.name=... -Dapp.cache.name=...

HTTP Session Replication Configuration

HTTP Session Replication Configuration

Root Context

...
<context-root>bank</context-root>
...