2

is it possible to add ui tools to existing spring boot application with flowable engine ? Added dependencies , but spring complains that resources ar not FOUND(404)

implementation group: 'org.flowable', name: 'flowable-spring-boot-starter-ui-task', version: '6.7.2'
implementation group: 'org.flowable', name: 'flowable-spring-boot-starter-process-rest', version: '6.7.2'
implementation group: 'org.flowable', name: 'flowable-spring-boot-starter-ui-admin', version: '6.7.2'
implementation group: 'org.flowable', name: 'flowable-spring-boot-starter-ui-modeler', version: '6.7.2'
LvDevR1
  • 59
  • 3

2 Answers2

0

No. You can't. Because Flowable Engine and REST API wrapper (flowable-rest.war) - is core product. But, flowable-ui.war, is independent product to demonstrate ability of Flowable, and inner UI part implemented using AngularJS.

BSeitkazin
  • 2,889
  • 25
  • 40
0

implementation "org.flowable:flowable-spring-boot-starter-ui-admin:$flowableVersion"
    implementation "org.flowable:flowable-spring-boot-starter-ui-idm:$flowableVersion"
    implementation "org.flowable:flowable-spring-boot-starter-ui-modeler:$flowableVersion"
    implementation "org.flowable:flowable-spring-boot-starter-ui-task:$flowableVersion"
and in properties :
flowable:
  admin:
    app:
      security:
        encryption:
          credentials-i-v-spec: 
          credentials-secret-spec: 
LvDevR1
  • 59
  • 3