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.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.location in the standalone.xml:

 

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

 

Info

Make sure you always end the value of the spring.config.location with a: /

 

JDBC drivers

When you need to configure JDBC drivers, see Configuring JDBC database drivers for JBoss EAP.

...