您的位置:首页 > 编程语言 > Java开发

Camunda工作流(2)学习笔记:SpringBoot整合Camunda

2019-04-26 22:17 1476 查看

一.添加依赖

<!-- Camunda -->
<dependency>
<groupId>org.camunda.bpm.springboot</groupId>
<artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
<version>3.2.0</version>
</dependency>
<dependency>
<groupId>org.camunda.bpm.springboot</groupId>
<artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
<version>3.2.0</version>
</dependency>

二.添加配置

camunda.bpm:
admin-user:
id: wahaha #登录账号
password: wahaha #登录密码
firstName: Wahaha
filter:
create: All tasks

Camunda Web访问地址 IP:端口

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: