- I have a flowable project(microservice) which has flowable-spring-boot-starter-rest in pom.xml, bpmn file is deployed under resources/processes directory.
- I am accessing the above flowable REST APIs to start the process, complete the tasks and get the tasks through another micro-service.
- Everything works fine with respect to bpmn. But I recently introduced Decision Table and added the dmn file under resources/processes directory of flowable project. (not sure dmn is getting deployed but bpmn is getting deployed)
I properly referred the Decision Table in flowable process modeler. There is no problem in this. The validation check has no errors. But when the task in the process comes to Decision Table, it throws "Exception : No decision found for key : <key_name_of_decision_table>".
My Process can access the decision table successfully if I use flowable-ui.war to run the flowable, but If I use flowable-spring-boot-starter-rest maven dependency this problem occurs.
I tried adding maven dependency for flowable-spring-boot-starter-dmn and flowable-dmn-model maven dependencies, nothing worked.
Do I need to configure or enable some properties of dmn in the application.properties? I have no clue now.