jBPM4与Spring的集成 - 编程入门网
jBPM4与Spring的集成时间:2011-09-14 blogjava ronghao现在流行抱大腿,不过对眼光的要求也高。要不就如高也,即使四眼,一样无用。对Java企业开发而 言,Spring的腿则是一定要抱的。而所谓抱Spring的腿,无外乎三点: 一是通过Spring暴露出服务,将服务配置到Spring的IOC容器里; 二是在自己的运行环境里访问到Spring的IOC容器,能够轻松使用Spring容器里所配置的服务; 三是对于具有事务管理特性的项目来说,将事务管理与Spring的事务管理进行合并。 下面分别讨论: 一、通过Spring暴露服务 还记得在jBPM4的运行期环境里提到的JbpmConfiguration吗?它是整个jBPM4的入口,并且是整个应用 独此一份的。通过它可以获取processEngine,并藉此获得工作流引擎所提供的各种服务: ProcessEngine processEngine = new Configuration() .buildProcessEngine(); RepositoryService repositoryService = processEngine.getRepositoryService(); ExecutionService executionService = processEngine.getExecutionService(); TaskService taskService = processEngine.getTaskService(); HistoryService historyService = processEngine.getHistoryService(); ManagementService managementService = processEngine.getManagementService(); 通过Spring暴露这些服务,配置如下: <bean id="jbpmConfiguration" class="org.jbpm.pvm.internal.cfg.SpringConfiguration"> <constructor-arg value="be/inze/spring/demo/jbpm.cfg.xml" /> </bean> <bean id="processEngine" factory-bean="jbpmConfiguration" factory- method="buildProcessEngine" /> <bean id="repositoryService" factory-bean="processEngine" factory- method="getRepositoryService" /> <bean id="executionService" factory-bean="processEngine" factory- method="getExecutionService" /> 细心的你会发现,配置时使用了JbpmConfiguration 的子类SpringConfiguration。 SpringConfiguration相比JbpmConfiguration有哪些增强呢,下面再讲。总之,现在,就可以使用Spring 来获取或注入这些Jbpm4所提供的服务了。 jBPM4与Spring的集成(2)时间:2011-09-14 blogjava ronghao二、在environment里加入SpringContext jBPM4的environment(运行期环境)提供Engine IOC(process-engine-context)和Transaction IOC (transaction-context)。要想在运行期方便地访问到Spring里所配置的服务,最直接的方法就是在 environment里加入Spring IOC(applicationContext)的引用。 SpringConfiguration即是对JbpmConfiguration增强了对Spring IOC的一个引用。 SpringConfiguration是如何做到的呢?简单,实现Spring的ApplicationContextAware接口,自动持 有applicationContext,然后openEnvironment时将其加入environment。 environment.setContext(new SpringContext(applicationContext)); SpringContext是对applicationContext的简单封装。 那么什么从Engine IOC移民到Spring IOC了呢?是的,最重要的就是Hibernate Session Factory。 在jbpm.cfg.xml的process-engine-context里干掉: <hibernate-configuration> <cfg resource="jbpm.hibernate.cfg.xml" /> </hibernate-configuration& |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |