springboot+camunda如何实现工作流
短信预约 -IT技能 免费直播动态提醒
这篇文章主要为大家展示了“springboot+camunda如何实现工作流”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“springboot+camunda如何实现工作流”这篇文章吧。
在camunda modeler工具里面写流程,任务执行指明Java类
保存文件放在resources目录下,并建立一个processes.xml的空文件
依赖配置
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!-- camunda依赖 --> <dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>com.h3database</groupId> <artifactId>h3</artifactId> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency> </dependencies>
yml配置:建立一个空数据库既可以,运行后会自动建表
spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/camunda username: root password: rootcamunda: bpm: admin-user: id: admin password: admin first-name: admin filter: create: All tasks #指定数据库类型 database: type: mysql #自动部署resources下面的bpmn文件 auto-deployment-enabled: true #禁止index跳转到Camunda自带的管理界面,默认true# webapp:# index-redirect-enabled: false
编写任务中的Java执行类
spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/camunda username: root password: rootcamunda: bpm: admin-user: id: admin password: admin first-name: admin filter: create: All tasks #指定数据库类型 database: type: mysql #自动部署resources下面的bpmn文件 auto-deployment-enabled: true #禁止index跳转到Camunda自带的管理界面,默认true# webapp:# index-redirect-enabled: false
登录执行,点击tasklist,
结果:已经成功执行任务
以上是“springboot+camunda如何实现工作流”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341