Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When you want to provide a 

Include Page
_ConfigLocation
_ConfigLocation
 to JBoss, you can edit the <profile>.conf.bat file in the JBoss installation directory\bin by adding -Dspring.config.additional-location=/path/to/your/config/ to the JAVA_OPTS. 

Instead of editing the <profile>.conf.bat you can also set an system property for the spring.config.additional-location in the standalone.xml:

Code Block
<system-properties>
  <property name="spring.config.additional-location" value="/path/to/your/config/"/>
</system-properties>

...