
flowable
超人很能飞
这个作者很懒,什么都没留下…
展开
-
flowable引擎类源码分析
首先我们看ProcessEngines的四个集合四个的存的值:下面看下具体流程:第一步,执行getDefaultProcessEngine方法:public static final String NAME_DEFAULT = "default";public static ProcessEngine getDefaultProcessEngine() { ...原创 2019-04-21 22:24:46 · 3646 阅读 · 0 评论 -
flowable获取spring对象原理
首先BeansConfigurationHelper 中调用setBean()方法:AbstractEngineConfiguration engineConfiguration = (AbstractEngineConfiguration) beanFactory.getBean(beanName);engineConfiguration.setBeans(new SpringBeanFac...原创 2019-04-21 22:43:03 · 549 阅读 · 0 评论 -
flowable流程实例笔记(1)
RuntimeService 运行服务类 支持启动的方式 流程定义: 从这里获取资源文件. 执行实例: 流程实例中执行的每个环节. 流程实例: 一个流程实例包括所有运行的节点,一个流程中流程实例只有一个. 启动一个实例: public void startProcessInstanceByKey() { ...原创 2019-04-22 20:54:07 · 4563 阅读 · 0 评论 -
flowable启动流程实例源码分析
1 流程实例助手类初始化源码public void initHelpers() { if (processInstanceHelper == null) { processInstanceHelper = new ProcessInstanceHelper(); } if (listenerNotificationHel...原创 2019-04-22 20:54:43 · 4544 阅读 · 1 评论 -
flowable引擎类与引擎配置类(1)
1. 导报 <!-- https://mvnrepository.com/artifact/org.flowable/flowable-engine --> <dependency> <groupId>org.flowable</groupId> <artifa...原创 2019-04-19 10:17:24 · 1102 阅读 · 0 评论 -
flowable流程笔记(1)
1RepositoryService类 RepositoryService的获取: (都是在processEngineConfiguration中实例化) repositoryService = processEngine.getRepositoryService(); repositoryService可派生的类 ...原创 2019-04-19 14:25:14 · 1307 阅读 · 0 评论