Skip to main content

Spring Boot Integration

The Operaton Engine can be used in a Spring Boot application by using provided Spring Boot starters. Spring Boot starters let you enable behavior in your Spring Boot application by adding dependencies to the classpath.

These starters will pre-configure the Operaton process engine, REST API and Web applications, so they can easily be used in a standalone process application.

If you are not familiar with Spring Boot, read the getting started guide.

To enable Operaton auto configuration, add the following dependency to your pom.xml:

<dependency>
<groupId>org.operaton.bpm.springboot</groupId>
<artifactId>operaton-bpm-spring-boot-starter</artifactId>
<version>2.1.2</version>
</dependency>

This will add the Operaton engine v2.1.2 to your dependencies.

Other starters that can be used are:

Requirements

Operaton Spring Boot Starter requires Java 17.

Supported deployment scenarios

Following deployment scenario is supported by Operaton:

  • executable JAR with embedded Tomcat and one embedded process engine (plus Webapps when needed)

There are other possible variations that might also work, but are not tested by Operaton at the moment.