# camunda-started **Repository Path**: simfree/camunda-started ## Basic Information - **Project Name**: camunda-started - **Description**: camunda 使用入门和示例 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-10-17 - **Last Updated**: 2022-10-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 在 Spring Boot 中使用 Camunda Platform ## 依赖模块介绍 ### camunda-bpm-spring-boot-starter-rest 提供Process Engine Restful接口。 接口列表:[REST API](https://docs.camunda.org/manual/7.3/api-references/rest/#overview) 如: ```shell curl -XGET http://localhost:8080/camunda/api/engine/engine/ ``` ### ## 配置修改 ### 数据库配置修改 1. 修改默认的H2数据源为本地MySQL,记得添加依赖 ```yaml spring.datasource: url: jdbc:mysql://localhost:3306/camunda_demo username: demo password: demo driver-class-name: com.mysql.jdbc.Driver ``` ### Admin User (不配置会怎么样) ```yaml camunda.bpm.admin-user: id: whz password: whz ``` ## 项目运行过程 ### 启动过程 ### 自动流程部署 自动部署resources下的bpmn文件 ### process application src/main/resources/META-INF/processes.xml is required for Camunda Engine. ## 帮助文档 [Spring Boot Integration](https://docs.camunda.org/manual/latest/user-guide/spring-boot-integration/) [User Guide](https://docs.camunda.org/get-started/spring-boot/) [Process Engine Configuration](https://docs.camunda.org/manual/latest/user-guide/spring-boot-integration/configuration/#camunda-engine-properties)