I want to use the flowable REST API from my spring boot app.
The docs say > “Flowable includes a REST API to the Flowable Engine that can be installed by deploying the flowable-rest.war file to a servlet container like Apache Tomcat. However, it can also be used in another web-application by including the servlet and it’s mapping in your application and add all flowable-rest dependencies to the classpath.”
I did not see a servlet mapping in the WEB-INF/web.xml file of the flowable-rest application.
How would I map the Flowable REST Servlet in my Spring Boot app? I am using the Spring Boot Starter so maybe it is already mapped.