This example uses Quarkus, the Supersonic Subatomic Java Framework, in combination
with the extension camunda-bpm-quarkus-engine
.
The Datasource example demonstrates how you can use the Camunda Platform Runtime Engine in combination with Quarkus to perform the following:
- Configure a custom datasource used by the engine.
- The example uses an H2 in-memory database by default, but other Camunda-supported datasouce configurations are available.
- Deploy a simple approval process.
- Manage transactions with Quarkus and the Camunda Platform Runtime Engine.
- Expose a REST API endpoint to evaluate a given amount.
To run the example you can package and run the application. When you go to the following URLs:
You should see the following logs:
INFO [org.cam.bpm.qua.exa.dat.ApprovalServiceDelegate] (main) Result of amount evaluation: true
INFO [org.cam.bpm.qua.exa.dat.ApprovalServiceBean] (main) The amount was approved
INFO [org.cam.bpm.qua.exa.dat.ApprovalServiceDelegate] (main) Result of amount evaluation: false
Alternatively, you can execute the unit test case.
If you want to learn more about Quarkus, please visit: https://quarkus.io/.
- Java 11+
- Maven 3.8.1+
You can run your application in dev mode that enables live coding using:
mvn clean compile quarkus:dev
NOTE: Quarkus now ships with a Dev UI, which is available in dev mode only at http://localhost:8080/q/dev/.
The application can be packaged using:
mvn clean package
It produces the quarkus-run.jar
file in the target/quarkus-app/
directory.
Be aware that it’s not an über-jar as the dependencies are copied into the target/quarkus-app/lib/
directory.
If you want to build an über-jar, execute the following command:
mvn clean package -Dquarkus.package.type=uber-jar
The application is now runnable using java -jar target/camunda-bpm-quarkus-example-datasource-1.0.0-SNAPSHOT-runner.jar
.