Activiti 5.3:配置与Spring整合

Activiti 5.3:配置与Spring整合


Activiti 5.3与Spring整合也比较简单,其基本思想就是,通过Spring的IOC容器来管理Activiti的流程引擎实例以及相关服务,可见,主要是基于Activiti在与Spring整合上努力上,做好配置即可。这里基于前面的的例子来进行,可以参考: Activiti 5.3:流程活动自动与手工触发执行,简单的流程,如图所示:

Activiti 5.3与Spring整合,默认使用的配置文件为activiti-context.xml,当然可以在实际使用的时候覆盖掉默认的配置,或者增加自己的其他的Spring的配置。

我们也命名为activiti-context.xml,内容(安装Activiti 5.3的时候,实例工程中已经附带)如下所示:

[java]  view plain copy
  1.   
  2.   
  3.        xmlns:context="http://www.springframework.org/schema/context"  
  4.        xmlns:tx="http://www.springframework.org/schema/tx"  
  5.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  6.        xsi:schemaLocation="http://www.springframework.org/schema/beans   http://www.springframework.org/schema/beans/spring-beans.xsd  
  7.                            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  8.                            http://www.springframework.org/schema/tx      http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">  
  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.   

这里面,我把Activiti 5.3默认工程中有关JPA的部分配置删除了,其实通过这个就可以初始化Activiti引擎实例。为了测试方便,将获取服务的实现抽象出来,同时使用Spring自带的与JUnit4集成的工具(AbstractTransactionalJUnit4SpringContextTests)。我们的实现类为AbstractSpringTest,代码如下所示:

[java]  view plain copy
  1. package org.shirdrn.workflow.activiti;  
  2.   
  3. import java.util.logging.Logger;  
  4.   
  5. import org.activiti.engine.HistoryService;  
  6. import org.activiti.engine.ManagementService;  
  7. import org.activiti.engine.ProcessEngine;  
  8. import org.activiti.engine.RepositoryService;  
  9. import org.activiti.engine.RuntimeService;  
  10. import org.activiti.engine.TaskService;  
  11. import org.junit.After;  
  12. import org.junit.Before;  
  13. import org.springframework.beans.factory.annotation.Autowired;  
  14. import org.springframework.test.context.ContextConfiguration;  
  15. import org.springframework.test.context.junit4.AbstractTransactionalJUnit4SpringContextTests;  
  16.   
  17. /** 
  18.  * @author shirdrn 
  19.  */  
  20. @ContextConfiguration("classpath:activiti-context.xml")  
  21. public abstract class AbstractSpringTest extends AbstractTransactionalJUnit4SpringContextTests {  
  22.   
  23.     @SuppressWarnings("unused")  
  24.     private final Logger log = Logger.getLogger(AbstractSpringTest.class.getName());  
  25.       
  26.     @SuppressWarnings("unused")  
  27.     @Autowired  
  28.     private ProcessEngine processEngine;  
  29.     @Autowired  
  30.     protected RepositoryService repositoryService;  
  31.     @Autowired  
  32.     protected RuntimeService runtimeService;  
  33.     @Autowired  
  34.     protected TaskService taskService;  
  35.     @Autowired  
  36.     protected HistoryService historyService;  
  37.     @Autowired  
  38.     protected ManagementService managementService;  
  39.       
  40.     protected String deploymentId;  
  41.       
  42.     public AbstractSpringTest() {  
  43.         super();  
  44.     }  
  45.       
  46.     @Before  
  47.     public void initialize() throws Exception {  
  48.         beforeTest();  
  49.     }  
  50.       
  51.     @After  
  52.     public void clean() throws Exception {  
  53.         afterTest();  
  54.     }  
  55.       
  56.     protected abstract void beforeTest() throws Exception;  
  57.       
  58.     protected abstract void afterTest() throws Exception;  
  59. }  

上面,将classpath:activiti-context.xml在测试的时候进行加载,这样,在测试的子类中,只需要将其他的相关Spring配置单独加载即可,业务配置与流程配置分开,便于维护。

具体测试用例,这里实现了一个简单的Spring Bean,配置文件为mySpringContext.xml,如下所示:

[xhtml]  view plain copy
  1.   
  2.   
  3.     xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"  
  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  5.     xsi:schemaLocation="http://www.springframework.org/schema/beans   http://www.springframework.org/schema/beans/spring-beans.xsd  
  6.                            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  7.                            http://www.springframework.org/schema/tx      http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">  
  8.   
  9.       
  10.           
  11.           
  12.       
  13.   

Spring Bean的实现,代码如下所示:

[java]  view plain copy
  1. package org.shirdrn.workflow.activiti.spring;  
  2.   
  3. import java.io.Serializable;  
  4.   
  5. public class MySpringBean implements Serializable {  
  6.     private static final long serialVersionUID = 1L;  
  7.     private Integer id;  
  8.     private String name;  
  9.     public Integer getId() {  
  10.         return id;  
  11.     }  
  12.     public void setId(Integer id) {  
  13.         this.id = id;  
  14.     }  
  15.     public String getName() {  
  16.         return name;  
  17.     }  
  18.     public void setName(String name) {  
  19.         this.name = name;  
  20.     }  
  21.     @Override  
  22.     public String toString() {  
  23.         return "MySpringBean[id="+ id + ",name=" + name + "]";  
  24.     }  
  25. }  

下面,看看我们具体的测试用例,实现代码如下所示:

[java]  view plain copy
  1. package org.shirdrn.workflow.activiti.spring;  
  2.   
  3. import java.util.HashMap;  
  4. import java.util.List;  
  5. import java.util.Map;  
  6.   
  7. import org.activiti.engine.repository.Deployment;  
  8. import org.activiti.engine.runtime.Execution;  
  9. import org.activiti.engine.runtime.ProcessInstance;  
  10. import org.junit.Test;  
  11. import org.shirdrn.workflow.activiti.AbstractSpringTest;  
  12. import org.shirdrn.workflow.activiti.subprocess.Merchant;  
  13. import org.springframework.beans.factory.annotation.Autowired;  
  14. import org.springframework.test.context.ContextConfiguration;  
  15.   
  16. /** 
  17.  * @author shirdrn 
  18.  */  
  19. @ContextConfiguration({  
  20.     "classpath:org/shirdrn/workflow/activiti/spring/mySpringContext.xml"})  
  21. public class ActivitiWithSpringTest extends AbstractSpringTest {  
  22.   
  23.     @Autowired  
  24.     private MySpringBean mySpringBean;  
  25.       
  26.     @Override  
  27.     protected void beforeTest() throws Exception {  
  28.         Deployment deployment = repositoryService  
  29.         .createDeployment()  
  30.         .addClasspathResource(  
  31.                 "diagrams/Task.ReceiveTask.bpmn20.xml")  
  32.         .deploy();    
  33.         deploymentId = deployment.getId();  
  34.     }  
  35.   
  36.     @Override  
  37.     protected void afterTest() throws Exception {  
  38.         repositoryService.deleteDeployment(deploymentId, true);   
  39.     }  
  40.       
  41.     @Test  
  42.     public void triggerMyProcess() {  
  43.         // prepare data packet  
  44.         Map variables = new HashMap();  
  45.         Map subVariables = new HashMap();  
  46.         variables.put("maxTransCount", 1000000);  
  47.         variables.put("merchant", new Merchant("ICBC"));  
  48.         variables.put("protocol", "UM32");  
  49.         variables.put("repository", "10.10.38.99:/home/shirdrn/repository");  
  50.         variables.put("in", subVariables);  
  51.         variables.put("out", new HashMap());  
  52.           
  53.         // start process instance  
  54.         ProcessInstance pi = runtimeService.startProcessInstanceByKey("MyReceiveTask", variables);  
  55.         assert (pi!=null);  
  56.           
  57.         List executions = runtimeService.createExecutionQuery().list();  
  58.         assert (executions.size()==1);  
  59.           
  60.         Execution execution = runtimeService.createExecutionQuery().singleResult();  
  61.         runtimeService.setVariable(execution.getId(), "type", "receiveTask");  
  62.         runtimeService.signal(execution.getId());  
  63.           
  64.         executions = runtimeService.createExecutionQuery().list();  
  65.         assert (executions.size()==1);  
  66.           
  67.         execution = executions.get(0);  
  68.         runtimeService.setVariable(execution.getId(), "oper", mySpringBean.getName());  
  69.         runtimeService.signal(execution.getId());  
  70.     }  
  71. }  

运行程序,结果信息如下所示:

[java]  view plain copy
  1. 011-3-23 18:21:28 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions  
  2. 信息: Loading XML bean definitions from class path resource [activiti-context.xml]  
  3. 2011-3-23 18:21:29 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions  
  4. 信息: Loading XML bean definitions from class path resource [org/shirdrn/workflow/activiti/spring/mySpringContext.xml]  
  5.   
  6. ... ...  
  7.   
  8. 2011-3-23 18:21:33 org.shirdrn.workflow.activiti.task.CheckBankReceiveTask execute  
  9. 信息: i am CheckBankReceiveTask.  
  10. in : {protocol=UM32, repository=10.10.38.99:/home/shirdrn/repository, merchant=Merchant[ICBC], maxTransCount=1000000, in={}, out={}}  
  11. 2011-3-23 18:21:33 org.shirdrn.workflow.activiti.task.CheckMerchantReceiveTask execute  
  12. 信息: i am CheckMerchantReceiveTask.  
  13. in : {protocol=UM32, repository=10.10.38.99:/home/shirdrn/repository, merchant=Merchant[ICBC], maxTransCount=1000000, type=receiveTask, in={}, out={}  

上述一部分是加载Spring配置,一部分是流程执行信息。

作者:howareyoutodaysoft 发表于2012-10-10 23:51:29 原文链接
阅读:31 评论:0 查看评论

你可能感兴趣的:(activiti,spring)