时间:2020-10-08来源:www.pcxitongcheng.com作者:电脑系统城
SpringBoot 集成 activiti
基础环境搭建
添加依赖
?1 2 3 4 5 |
<dependency> <groupId>org.activiti</groupId> <artifactId>activiti-spring-boot-starter-basic</artifactId> <version> 6.0 . 0 </version> </dependency> |
添加配置文件
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
server: tomcat: uri-encoding: UTF- 8 threads: # 最大工作线程数,默认 200 max: 1000 # 最小工作空闲线程数,默认 10 。(适当增大一些,以便应对突然增长的访问量) min-spare: 30 port: 8082 spring: datasource: driver- class -name: com.mysql.cj.jdbc.Driver url: jdbc:mysql: //127.0.0.1:3306/activiti6-demo?characterEncoding=utf8&useSSL=false username: root password: 123456 activiti: # 建表规则 # false 默认值。在启动时会对比数据库中保存的版本,如果没有表或版本不匹配则抛出异常。生产环境常用 # true 对activiti所有表进行更新操作,不存在则自动创建。开发常用 # create_drop 在启动时创建,在关闭时删除(必须手动关闭引擎,才能删除)。单元测试常用 # drop_create 在启动时删除原来的旧表,然后在创建新表(不需要手动关闭引擎) database-schema-update: true # 启动的时候是否自动部署流程 check-process-definitions: false # 历史数据 # none 不保存任何的历史数据,因此,在流程执行过程中,这是最高效的 # activity 级别高于none,保存流程实例与流程行为,其他数据不保存 # audit 除activity级别会保存的数据外,还会保存全部的流程任务及其属性。audit为history的默认值 # full 保存历史数据的最高级别,除了会保存audit级别的数据外,还会保存其他全部流程相关的细节数据,包括一些流程参数等 history-level: audit # 不生成历史表 activiti6默认启用,activiti7默认关闭 db-history-used: true |
现在运行项目报错
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
java.lang.IllegalArgumentException: Could not find class [org.springframework.boot.autoconfigure.security.SecurityAutoConfiguration] at org.springframework.util.ClassUtils.resolveClassName(ClassUtils.java: 334 ) ~[spring-core- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.core.annotation.TypeMappedAnnotation.adapt(TypeMappedAnnotation.java: 446 ) ~[spring-core- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.core.annotation.TypeMappedAnnotation.getValue(TypeMappedAnnotation.java: 369 ) ~[spring-core- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.core.annotation.TypeMappedAnnotation.asMap(TypeMappedAnnotation.java: 284 ) ~[spring-core- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.core.annotation.AbstractMergedAnnotation.asAnnotationAttributes(AbstractMergedAnnotation.java: 193 ) ~[spring-core- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.core.type.AnnotatedTypeMetadata.getAnnotationAttributes(AnnotatedTypeMetadata.java: 106 ) ~[spring-core- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.context.annotation.AnnotationConfigUtils.attributesFor(AnnotationConfigUtils.java: 285 ) ~[spring-context- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.context.annotation.AnnotationBeanNameGenerator.determineBeanNameFromAnnotation(AnnotationBeanNameGenerator.java: 102 ) ~[spring-context- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.context.annotation.AnnotationBeanNameGenerator.generateBeanName(AnnotationBeanNameGenerator.java: 81 ) ~[spring-context- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.registerBeanDefinitionForImportedConfigurationClass(ConfigurationClassBeanDefinitionReader.java: 160 ) ~[spring-context- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.loadBeanDefinitionsForConfigurationClass(ConfigurationClassBeanDefinitionReader.java: 141 ) ~[spring-context- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.loadBeanDefinitions(ConfigurationClassBeanDefinitionReader.java: 120 ) ~[spring-context- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java: 331 ) ~[spring-context- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java: 236 ) ~[spring-context- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java: 280 ) ~[spring-context- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java: 96 ) ~[spring-context- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java: 707 ) ~[spring-context- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java: 533 ) ~[spring-context- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java: 143 ) ~[spring-boot- 2.3 . 4 .RELEASE.jar: 2.3 . 4 .RELEASE] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java: 758 ) [spring-boot- 2.3 . 4 .RELEASE.jar: 2.3 . 4 .RELEASE] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java: 750 ) [spring-boot- 2.3 . 4 .RELEASE.jar: 2.3 . 4 .RELEASE] at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java: 397 ) [spring-boot- 2.3 . 4 .RELEASE.jar: 2.3 . 4 .RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java: 315 ) [spring-boot- 2.3 . 4 .RELEASE.jar: 2.3 . 4 .RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java: 1237 ) [spring-boot- 2.3 . 4 .RELEASE.jar: 2.3 . 4 .RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java: 1226 ) [spring-boot- 2.3 . 4 .RELEASE.jar: 2.3 . 4 .RELEASE] at com.test.activitydemo.ActivityDemoApplication.main(ActivityDemoApplication.java: 11 ) [classes/:na] Caused by: java.lang.ClassNotFoundException: org.springframework.boot.autoconfigure.security.SecurityAutoConfiguration at java.net.URLClassLoader.findClass(URLClassLoader.java: 382 ) ~[na: 1.8 .0_191] at java.lang.ClassLoader.loadClass(ClassLoader.java: 424 ) ~[na: 1.8 .0_191] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java: 349 ) ~[na: 1.8 .0_191] at java.lang.ClassLoader.loadClass(ClassLoader.java: 357 ) ~[na: 1.8 .0_191] at java.lang.Class.forName0(Native Method) ~[na: 1.8 .0_191] at java.lang.Class.forName(Class.java: 348 ) ~[na: 1.8 .0_191] at org.springframework.util.ClassUtils.forName(ClassUtils.java: 284 ) ~[spring-core- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] at org.springframework.util.ClassUtils.resolveClassName(ClassUtils.java: 324 ) ~[spring-core- 5.2 . 9 .RELEASE.jar: 5.2 . 9 .RELEASE] ... 25 common frames omitted |
在启动类中排除安全配置就可以成功运行
?1 2 3 4 5 6 7 |
@SpringBootApplication ( exclude = SecurityAutoConfiguration. class ) public class ActivityDemoApplication { public static void main(String[] args) { SpringApplication.run(ActivityDemoApplication. class , args); } } |
idea 流程图插件
链接: https://pan.baidu.com/s/10Lt3RP48D52nfG1ZszT2hw 提取码: e7eu
简单的请假流程 画流程图
请假
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
package com.test.activitydemo.a_first; import com.test.activitydemo.ActivityDemoApplicationTests; import org.activiti.engine.HistoryService; import org.activiti.engine.RepositoryService; import org.activiti.engine.RuntimeService; import org.activiti.engine.TaskService; import org.activiti.engine.history.HistoricProcessInstance; import org.activiti.engine.history.HistoricTaskInstance; import org.activiti.engine.repository.Deployment; import org.activiti.engine.runtime.ProcessInstance; import org.activiti.engine.task.Task; import org.junit.jupiter.api.Test; import org.springframework.util.CollectionUtils; import javax.annotation.Resource; import java.util.List; /** * <p> * * </p> * * @author jisen wang * @Date 2020/10/7 */ public class ActivitiQuick extends ActivityDemoApplicationTests { @Resource private RepositoryService repositoryService; @Resource private RuntimeService runtimeService; @Resource private TaskService taskService; @Resource private HistoryService historyService; private final String bpmnNameAndKey = "first" ; /*见表,默认启动的时候就会建好表格*/ @Test public void createTable() { } /*第一步:--永远是画制流程图---部署流程图*/ @Test public void deploy() { Deployment deploy = repositoryService.createDeployment() .addClasspathResource("processes/first.bpmn") // .addClasspathResource("processes/first.png") .key(bpmnNameAndKey) .name(bpmnNameAndKey + "name") .category("HR") .deploy(); System.out.println("流程部署ID\t" + deploy.getId()); System.out.println("流程keyID\t" + deploy.getKey()); System.out.println("流程名称ID\t" + deploy.getName()); System.out.println("流程分类ID\t" + deploy.getCategory()); } /*第二步:启动一个流程实例,相当于----有人请假一次*/ @Test public void start() { ProcessInstance processInstance = runtimeService.startProcessInstanceByKey(bpmnNameAndKey); System.out.println("流程实例ID\t" + processInstance.getId()); System.out.println("流程定义ID\t" + processInstance.getProcessDefinitionId()); System.out.println("流程定义key\t" + processInstance.getProcessDefinitionKey()); } /*第三步:查找个人待办任务列表*/ @Test public void findMyTask() { String assignee = "李四"; List<Task> list = taskService.createTaskQuery() .taskAssignee(assignee) .list(); if (!CollectionUtils.isEmpty(list)) { for (Task task : list) { System.out.println("任务ID\t" + task.getId()); System.out.println("任务名称\t" + task.getName()); System.out.println("任务执行人\t" + task.getAssignee()); } } } /*第四步:执行任务*/ @Test public void complte() { String taskId = "5002"; taskService.complete(taskId); System.out.println("任务执行完成"); } /*第五步:查看历史流程实例*/ @Test public void findhistProcessInstance() { List<HistoricProcessInstance> list = historyService.createHistoricProcessInstanceQuery() .processDefinitionKey(bpmnNameAndKey) .list(); if (!CollectionUtils.isEmpty(list)) { for (HistoricProcessInstance historicProcessInstance : list) { System.out.println("业务系统key\t" + historicProcessInstance.getBusinessKey()); System.out.println("部署对象ID\t" + historicProcessInstance.getDeploymentId()); System.out.println("执行时长\t" + historicProcessInstance.getDurationInMillis()); System.out.println("流程定义ID\t" + historicProcessInstance.getProcessDefinitionId()); System.out.println("流程定义的key\t" + historicProcessInstance.getProcessDefinitionKey()); System.out.println("流程定义名称\t" + historicProcessInstance.getProcessDefinitionName()); } } } /*第六步:查看历史任务*/ @Test public void findHisTask(){ List<HistoricTaskInstance> list = historyService.createHistoricTaskInstanceQuery() .list(); if (!CollectionUtils.isEmpty(list)) { for (HistoricTaskInstance historicTaskInstance : list) { System.out.println( "任务执行人\t" + historicTaskInstance.getAssignee()); System.out.println( "任务名称\t" + historicTaskInstance.getName()); System.out.println( "任务ID\t" + historicTaskInstance.getId()); System.out.println( "流程实例ID\t" + historicTaskInstance.getProcessInstanceId()); System.out.println( "*****************" ); } } } } |
到此这篇关于SpringBoot 集成 activiti的示例代码的文章就介绍到这了,
2023-03-18
如何使用正则表达式保留部分内容的替换功能2023-03-18
gulp-font-spider实现中文字体包压缩实践2023-03-18
ChatGPT在前端领域的初步探索最近闲来无事,在自己的小程序里面集成了一个小视频的接口,但是由于小程序对于播放视频的限制,只能用来做一个demo刷视频了,没办法上线体验。小程序播放视频限制最多10个,超出可能...
2023-03-18
Vue.js、React和Angular对比 以下是Vue.js的代码示例: 以下是React的代码示例: 以下是Angular的代码示例:...
2023-03-18