Versions Compared

Key

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

...

Code Block
languagexml
titleMaven dependency for activemq-all
collapsetrue
<dependency>
    <groupId>org.apache.activemq</groupId>
    <artifactId>activemq-all</artifactId>
    <version>5.15.0</version>
</dependency>

Adjust the configuration file to your own environment.

Code Block
languagetext
titlejs7_jms_config
collapsetrue
# Message Server Settings
jms_url       = tcp://localhost:61616

# JS7 JOC Settings
joc_api_url   = http://localhost:4444/joc/api/
username      = root
password      = root

# /orders/add API Settings
controller_id  = standalone
workflow_path  = /JS7Demo/01_HelloWorld/jdHelloWorld


Workflow

The workflow in this example includes two jobs which both call the main class of the JmsExample.java class with either a produce or a consume argument.

...