Versions Compared

Key

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

This page describes the installation of the Blueriq Runtime  or components like the customer-data-service on JBoss EAP application server.

When this page is referring to an application server specific war file, this only applies for the Blueriq Runtime.

Deployment of Blueriq Runtime

Since Blueriq 10 11 we have specific two out-of-the-box war files available in the Blueriq release zip (folder: \Runtime\Java\Webapp). Please use the correct war file for your application server.

Copy the JBoss specific Blueriq WAR correct war file to the deployments directory of your desired profile. JBoss will automatically deploy the WAR and after successful deployment Blueriq will be available at  http://<servername>:<server-port>/<WAR name>.

When you as a customer need (when you have custom plugins) to build your custom war file of the Blueriq Runtime you can use a projectstarter specific for you target application server platform. For more Information see: Setup development environment#Java-CreateaBlueriqJavaRuntimeproject .

Upgrading from JBoss EAP 6.4 to JBoss EAP 7.0

Info

This only applies for the Blueriq Runtime.

...

When you are currently using a out-of-the-box war for JBoss EAP 6.4 you can just use the blueriq-runtime-jbossapplication-eap7-{blueriq-version}.war from the Blueriq release zip instead, to place in the JBoss deployments folder.

If you are building a custom Blueriq Runtime war using the projectstarter, you need to merge the files from the blueriq-runtime-application-projectstarter-jboss-eap7-{blueriq-version}.zip with the same files inside your current war (and pom.xml for your build).

...

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.

...