flowable入门

flowable ui 运行

到flowable官网下载最新版本的zip包。将wars目录下的war包复制到tomcat webapps下。tomcat运行后解压这些war包。通过下面链接访问,用户名密码admin/test

  • http://localhost:8080/flowable-task
  • http://localhost:8080/flowable-modeler
  • http://localhost:8080/flowable-idm
  • http://localhost:8080/flowable-admin
  • http://localhost:8080/flowable-rest/docs

修改本地数据库
在创建数据库,到解压后的war包分别找到flowable-default.properties,修改数据库用户名密码为自己本地数据库。并将驱动包拷贝到lib目录下。

spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/flowable
spring.datasource.username=postgre
spring.datasource.password=postgre

参考ui 界面请假流程操作实例,先创建模型、在创建表单、在创建应用程序和模型绑定。在task项目中启动流程实例。

引用

https://tkjohn.github.io/flowable-userguide/
https://documentation.flowable.com/appdev-dbschema/3.5.0/100-overview.html
http://www.shareniu.com/flowable6.5_zh_document/bpm/index.html

你可能感兴趣的:(flowable入门)