https://github.com/meethigher/camunda-springboot-demo
Camunda使用示例,结合SpringBoot+ h2 实现请假审批流程
https://github.com/meethigher/camunda-springboot-demo
camunda camunda-bpm camunda-bpm-platform
Last synced: about 1 month ago
JSON representation
Camunda使用示例,结合SpringBoot+ h2 实现请假审批流程
- Host: GitHub
- URL: https://github.com/meethigher/camunda-springboot-demo
- Owner: meethigher
- Created: 2022-11-24T16:14:38.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-25T12:28:16.000Z (over 2 years ago)
- Last Synced: 2025-07-13T12:48:44.126Z (3 months ago)
- Topics: camunda, camunda-bpm, camunda-bpm-platform
- Language: Java
- Homepage: https://meethigher.top/blog/2022/camunda-practice/
- Size: 43.9 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
整个camunda的绘图、具体使用,参照上一篇文章[Camunda工作流引擎简记](https://meethigher.top/blog/2022/camunda-quick-start/)。
[源码地址](https://github.com/meethigher/camunda-springboot-demo),相关技术储备如下
1. springboot--v2.5.4
2. jpa--v2.5.4
3. postgresql--v11
4. camunda--v7.16.0整个过程不需要建表,所见即所得!这就是JPA面向对象编程的好处,这也是我认为JPA优于Mybatis的地方。
虽然我两种都用,但应用实际demo,JPA的速度远超Mybatis。
# 一、展示效果
1.) 启动项目

2.) 访问`http://localhost:9999/`,账号密码均为demo,可以找到最终流程图。

3.) 访问`http://localhost:9999/swagger-ui/index.html`,调用接口,体验整个流程。

# 二、参考致谢
1. [xiaojing5576/workflow: 基于camunda实现的工作流设计](https://github.com/xiaojing5576/workflow)
2. [FuriousPws002/camunda-bpm-spring-boot-example: Spring Boot and database integration camunda bpmn](https://github.com/FuriousPws002/camunda-bpm-spring-boot-example)