Spring boot DMN rest API and FORM Rest Api Integration

I wonder if there is a way to integrate the DMN rest API and Form rest API to a spring boot project. I realized there are no flowable-spring-boot-starter for dmn rest api neither for form rest api, can someone let me know how to integrate the mentioned rest API´s to my spring boot project?. those are the dependencies I currently have in my POM.xml

	<dependency>
		<groupId>org.flowable</groupId>
		<artifactId>flowable-spring-boot-starter-basic</artifactId>
		<version>${flowable.version}</version>
	</dependency>

	<dependency>
		<groupId>org.flowable</groupId>
		<artifactId>flowable-spring-boot-starter-rest-api</artifactId>
		<version>${flowable.version}</version>
	</dependency>

	<dependency>
		<groupId>org.flowable</groupId>
		<artifactId>flowable-spring-boot-starter-jpa</artifactId>
		<version>${flowable.version}</version>
	</dependency>
	<dependency>
		<groupId>org.flowable</groupId>
		<artifactId>flowable-spring-boot-starter-integration</artifactId>
		<version>${flowable.version}</version>
	</dependency>
	<dependency>
		<groupId>org.flowable</groupId>
		<artifactId>flowable-ldap</artifactId>
		<version>${flowable.version}</version>
	</dependency>
1 Like

See How to integrate flowable-form-engine to a spring-boot application. Looking at the rest-starter, it seems it’s enough to add the rest dependency modules to enable it.