Spring Boot 如何启用可流动的UI?

pjngdqdw  于 2022-12-18  发布在  Spring
关注(0)|答案(1)|浏览(115)

是否可以将ui工具添加到现有的带有可流动引擎的spring Boot 应用程序中?添加了依赖项,但spring抱怨未找到资源(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'
mcdcgff0

mcdcgff01#

不,你不能。因为Flowable Engine和REST API Package 器(flowable-rest.war)是核心产品。但是,flowable-ui.war是一个独立的产品,用于演示Flowable的能力,以及使用AngularJS实现的内部UI部分。

相关问题