# spring-boot-flowable-demo **Repository Path**: orange_cn/spring-boot-flowable-demo ## Basic Information - **Project Name**: spring-boot-flowable-demo - **Description**: spring-boot-flowable-demo - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2022-02-10 - **Last Updated**: 2022-05-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # spring-boot-flowable-demo ## 安装flowable-ui ```shell # 不配置数据库(默认H2数据库) docker run --restart=always -d -p 9001:8080 flowable/flowable-ui # 使用MySQL数据库(注意:要去掉换行,配置数据库地址账号和密码) docker run --name flowable-ui -p 9001:8080 \ -e spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver \ -e spring.datasource.url="jdbc:mysql://127.0.0.1:3306/flowable?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&useSSL=true&nullCatalogMeansCurrent=true" \ -e spring.datasource.username=${username} \ -e spring.datasource.password=${password} \ -d --restart=always flowable/flowable-ui \ # 如果配置了数据库,还要添加数据库驱动 docker cp /root/file/jar/mysql-connector-java-8.0.27.jar 容器id:/app/WEB-INF/lib/mysql-connector-java-8.0.27.jar # 重启flowable-ui docker restart 容器 ``` 地址:http://127.0.0.1:6020/flowable-ui 账号:admin 密码:test