- 浏览: 148884 次
- 性别:
- 来自: 北京
最新评论
-
cherishlive:
charlth.li@hotmail.com 同求 谢谢
通过jsp标签封装的列表组件 -
xiaoll880214:
您好!利用你贴的decodeQuotedPrintable方法 ...
实现MHT文件格式的解析和内容抽取 -
zhenrs:
可以把ApplicationContext贴出来不
JBPM与SPRING事务整合之深度历险 -
cllstudy:
您好,急需lucene对mht解析的parse,能发源代码给我 ...
实现MHT文件格式的解析和内容抽取 -
terryisme:
terryisme@126.com多谢.
通过jsp标签封装的列表组件
经过一段事件的摸索终于将jpbm与spring完全整合,主要是事务处理的整合,工作流代码与业务代码在一个事务上下文进行;
使用了springmodules的封装,对jbpm稍有修改,稍后附上解决办法及代码;
========================================================
spring modules中包含了spring集成JBPM的机制,在使用的发现其并没有彻底解决两者的事务处理统一的问题,经过一段事件的摸索终于将jpbm与spring完全整合,主要是事务处理的整合,工作流代码与业务代码在一个事务上下文进行;
使用了springmodules的封装,对jbpm稍有修改,稍后附上解决办法及代码;
-------------------------------------------------姗姗来吃---------------o(∩_∩)o...哈哈,害得帖子被隐藏了
第一步:首先引入spring-modules-jbpm31.jar,同时将jbpm包含的所有hibernate映射文件解压出来,集成到spring配置文件中,可以使用类路径下的目录形式简化,如下:
- <property name="mappingDirectoryLocations">
- <list>
- <value>classpath:/conf/mapping/jbpm/<!---->value>
- <!---->list>
- <!---->property>
经测试在这种方式在weblogic上不能正常加载,从jar包加载也有问题必须解压到目录;
第二步:配置JPBM的大字段处理类型,这一步估计大家都知道,没什么说的;
- <!---->
- <bean id="jbpmTypes" class="org.springframework.orm.hibernate3.TypeDefinitionBean">
- <property name="typeName" value="string_max" />
- <property name="typeClass" value="org.jbpm.db.hibernate.StringMax" />
- <!---->bean>
- <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
- <property name="lobHandler" ref="oracleLobHandle" />
- <property name="dataSource" ref="dataSource" />
- <property name="typeDefinitions"> 注意这里
- <ref bean="jbpmTypes" />
- <!---->property>
- 。。。。。。
第三步:配置spring modules,通过 springmodules 初始化jbpmConfiguration;
<!-- jBPM configuration--> <bean id="jbpmConfiguration" class="org.springmodules.workflow.jbpm31.LocalJbpmConfigurationFactoryBean"> <property name="sessionFactory" ref="sessionFactory" /> <property name="configuration" value="classpath:/conf/jbpm.cfg.xml" />注意这里 <!--<property name="configuration" value="classpath:/org/jbpm/default.jbpm.cfg.xml" />--> <!--<property name="processDefinitions">--> <!--<list>--> <!--<ref local="demoWorkflow" />--> <!--</list>--> <!--</property>--> <!--<property name="createSchema" value="true"/>--> </bean>
<jbpm-configuration> <jbpm-context> <!--<service name="persistence" factory="org.jbpm.persistence.db.DbPersistenceServiceFactory" />--> <service name="persistence"> <factory> <bean class="org.jbpm.persistence.db.DbPersistenceServiceFactory"> <field name="isTransactionEnabled"> <false /> 注意这里 </field> <field name="isCurrentSessionEnabled"> <true /> 注意这里 </field> </bean> </factory> </service> <service name="message" factory="org.jbpm.msg.db.DbMessageServiceFactory" /> <service name="scheduler" factory="org.jbpm.scheduler.db.DbSchedulerServiceFactory" /> <service name="logging" factory="org.jbpm.logging.db.DbLoggingServiceFactory" /> <service name="authentication" factory="org.jbpm.security.authentication.DefaultAuthenticationServiceFactory" /> </jbpm-context> <!--<string name="resource.hibernate.cfg.xml" value="hibernate.cfg.xml" />-->注意这里 <string name="resource.business.calendar" value="org/jbpm/calendar/jbpm.business.calendar.properties" /> <string name="resource.default.modules" value="org/jbpm/graph/def/jbpm.default.modules.properties" /> <string name="resource.converter" value="org/jbpm/db/hibernate/jbpm.converter.properties" /> <string name="resource.action.types" value="org/jbpm/graph/action/action.types.xml" /> <string name="resource.node.types" value="org/jbpm/graph/node/node.types.xml" /> <string name="resource.parsers" value="org/jbpm/jpdl/par/jbpm.parsers.xml" /> <string name="resource.varmapping" value="org/jbpm/context/exe/jbpm.varmapping.xml" /> <long name="jbpm.msg.wait.timout" value="5000" singleton="true" /> <int name="jbpm.byte.block.size" value="1024" singleton="true" /> <string name="mail.smtp.host" value="localhost" /> <bean name="jbpm.task.instance.factory" class="org.jbpm.taskmgmt.impl.DefaultTaskInstanceFactoryImpl" singleton="true" /> <bean name="jbpm.variable.resolver" class="org.jbpm.jpdl.el.impl.JbpmVariableResolver" singleton="true" /> <bean name="jbpm.mail.address.resolver" class="org.jbpm.identity.mail.IdentityAddressResolver" singleton="true" /> </jbpm-configuration>
第四步:修改JBPM自带的过滤器(web.xml),初始化当前请求线程的JBPM Context时从spring获取我们上面配置的jbpmConfiguration;其自带过滤器是通过JbpmConfiguration.getInstance获取的,不能公用spring事务上下文的hibernate session;
- <filter>
- <filter-name>JbpmContextFilter<!---->filter-name>
- <filter-class>com.**.**.workflow.web.JbpmContextHolder<!---->filter-class> 注意这里
- <!---->filter>
- import com.**.**.core.container.ApplicationContext;
- import org.jbpm.JbpmConfiguration;
- import org.jbpm.JbpmContext;
- import javax.servlet.*;
- import javax.servlet.http.HttpServletRequest;
- import java.io.IOException;
- import java.io.Serializable;
- import java.security.Principal;
- public class JbpmContextHolder implements Filter, Serializable {
- private static final long serialVersionUID = 1L;
- String jbpmConfigurationResource = null;
- String jbpmContextName = null;
- boolean isAuthenticationEnabled = true;
- public void init(FilterConfig filterConfig) throws ServletException {
- // get the jbpm configuration resource
- this.jbpmConfigurationResource = filterConfig.getInitParameter("jbpm.configuration.resource");
- // get the jbpm context to be used from the jbpm configuration
- this.jbpmContextName = filterConfig.getInitParameter("jbpm.context.name");
- if (jbpmContextName == null) {
- jbpmContextName = JbpmContext.DEFAULT_JBPM_CONTEXT_NAME;
- }
- // see if authentication is turned off
- String isAuthenticationEnabledText = filterConfig.getInitParameter("authentication");
- if ((isAuthenticationEnabledText != null)
- && ("disabled".equalsIgnoreCase(isAuthenticationEnabledText))
- ) {
- isAuthenticationEnabled = false;
- }
- }
- public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
- String actorId = null;
- // see if we can get the authenticated swimlaneActorId
- if (servletRequest instanceof HttpServletRequest) {
- HttpServletRequest httpServletRequest = (HttpServletRequest) servletRequest;
- Principal userPrincipal = httpServletRequest.getUserPrincipal();
- if (userPrincipal != null) {
- actorId = userPrincipal.getName();
- }
- }
- JbpmContext jbpmContext = getJbpmConfiguration().createJbpmContext(jbpmContextName);
- try {
- if (isAuthenticationEnabled) {
- jbpmContext.setActorId(actorId);
- }
- filterChain.doFilter(servletRequest, servletResponse);
- } finally {
- jbpmContext.close();
- }
- }
- 注意:下面是修改后的方法,从spring获取JbpmConfiguration;
- ApplicationContext是我们对spring的封装,可以改成自己的bean加载方式;
- protected JbpmConfiguration getJbpmConfiguration() {
- return (JbpmConfiguration) ApplicationContext.getInstance().getBizComponent("jbpmConfiguration");
- }
- public void destroy() {
- }
- }
第五步:大功告成
经过上边的修改后,从spring事务过程中调用JBPM方法、或者spring modules的方法时都会直接纳入当前事务,实现一致的提交和回滚;
第六步:后话
由于JBPM本身的设计问题,采用这样的解决方案后对JBPM API的调用必须在事务环境中运行,例如不能直接在struts action调用JBPM API代码;当然有解决的办法,但是需要对JBPM做进一步的修改,小弟为了保持JBPM的纯洁性,只改了JBPM的外围代码,没有动大手术,o(∩_∩)o...
另一个相关的问题就是不能直接在单元测试中获取JBPMContext,需要手工开启事务管理器;
附单元测试代码:
public void testNonTrans() throws Exception { try { assertNull(jbpmConfiguration.getCurrentJbpmContext()); jbpmConfiguration.createJbpmContext(); JbpmContext context = jbpmConfiguration.getCurrentJbpmContext(); assertNotNull(context); System.out.println(help.getDecisionHandler());//有事务环境 try { help2.getProcessInstance(new Long(57424));//无事务环境:必然报错 // org.hibernate.HibernateException: No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here assertTrue(false); } catch (Exception e) { assertTrue(true); } assertNotNull(basedao.getCurrentSession());//HibernateBaseDAO关联的hibernatetemplate默认的autocreate为true,所以可以得到session assertFalse(basedao.getCurrentSession() == basedao.getCurrentSession());//不在事务中每次创建新的不同的session assertTrue(context.getSessionFactory() == basedao.getSessionFactory());//SessionFactory公用 try { context.getSessionFactory().getCurrentSession();//无事务环境时从SessionFactory获取session必然报错,同context.getSession() // org.hibernate.HibernateException: No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here assertTrue(false); } catch (Exception e) { assertTrue(true); } try { basedao.getSessionFactory().getCurrentSession();//无事务环境时从SessionFactory获取session必然报错 // org.hibernate.HibernateException: No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here assertTrue(false); } catch (Exception e) { e.printStackTrace(); assertTrue(true); } assertNotNull(context.getSessionFactory().openSession()); assertNotNull(basedao.getSessionFactory().openSession()); assertFalse(context.getSessionFactory().openSession() == basedao.getSessionFactory().openSession()); assertTrue(true); } catch (Exception e) { e.printStackTrace(); assertFalse(true); //失败 } } public void testTransConfig() throws Exception { TransactionStatus status = beginTransation(); assertNull(jbpmConfiguration.getCurrentJbpmContext()); jbpmConfiguration.createJbpmContext(); JbpmContext context = jbpmConfiguration.getCurrentJbpmContext(); assertNotNull(context); try { System.out.println(help.getDecisionHandler()); System.out.println(help2.getProcessInstance(new Long(57424))); assertNotNull(context.getSession()); assertTrue(context.getSession() == context.getSession());//相同的session assertTrue(basedao.getCurrentSession() == basedao.getCurrentSession());//相同的session assertTrue(context.getSessionFactory() == basedao.getSessionFactory());//相同 assertTrue(context.getSession() == basedao.getCurrentSession());//相同 assertTrue(context.getSessionFactory().getCurrentSession() == basedao.getSessionFactory().getCurrentSession());//从相同的SessionFactory取getCurrentSession是相同的 } catch (Exception e) { e.printStackTrace(); } transactionManager.commit(status); /////////// }
评论
protected JbpmConfiguration getJbpmConfiguration() {
private static ApplicationContext ctx = null;
public static void setCtx(ApplicationContext ctxa){
ctx=ctxa;
}
protected JbpmConfiguration getJbpmConfiguration() {
if (ctx == null) {
ApplicationContext ctx = new ClassPathXmlApplicationContext(new String[] {"classpath*:spring/test-jbpm.xml"} );
setCtx(ctx);
}
JbpmConfiguration jc=(JbpmConfiguration)ctx.getBean("jbpmConfiguration");
return jc;
}
}
2。调用
通过struts action,调用service,具体如下写法:
action:testSvc.testTran(busiEntity);
说明busiEntity,业务实体
service的testTran:
1)使用hiberate保存busiEntity
2)调用另外一个service,此service调用另外一个类A,类A扩展JbpmTemplate,实现保存jbpm的实例。
目前的差异问题,还是不能实现你说的业务和jbpm的事务保持一致的提交和回滚。
是否还有哪个地方不对?
能否将你的配置文件、调用方式在说说。
谢谢!
发表评论
-
攻陷http://91.ez.lv/ 视频下载方法
2010-05-23 02:36 25047http://91.ez.lv/ 上常有很不错的视频,可惜不能 ... -
《掌心天涯》Android版
2010-05-08 19:53 1558为天涯论坛定制的android本地化界面,方面在手机上浏览,具 ... -
JAVA反编译[原]
2010-01-31 12:24 1763======================== -
告别,我爱的北京...
2008-07-24 02:02 888别了,我爱的北京! 北京,我从小向往的城市,祖国的首都,红 ... -
为什么要始终使用PreparedStatement代替Statement
2008-03-29 01:55 1020在JDBC应用中,如果你已 ... -
代码行数简单计算
2008-03-29 01:55 1231代码行计算(包括注释、配置、jsp): n=文本文件大小(M ... -
NekoHTML 处理转义字符的问题
2008-03-26 21:26 2024NekoHTML在处理html文档时,如果碰到&开始的 ... -
真是见鬼!(我的一个破程序,被到处转载)
2007-12-01 00:03 1184真是见鬼啊! 当年在学校写的一个破程序,竟然被到处转,nnd。 ...
相关推荐
### jbpm4.3与Spring框架的整合指南 在企业级应用开发中,流程管理引擎JBPM(JBoss Business Process Management)与Spring框架的结合使用是常见的一种技术方案。JBPM是一个灵活、强大的业务流程管理工具,而Spring...
【jbpm与ssh框架整合】 jbpm4与SSH框架的整合是将jBPM(java Business Process Managerment)这一轻量级工作流引擎与Struts2、Spring和Hibernate(SSH)这三大主流Java开发框架结合的过程,以实现企业级应用中的...
### jBPM 4.4与SSH框架的整合:深入解析与实践 #### jBPM:Java业务流程管理引擎 jBPM,全称为java Business Process Management,是JBoss旗下的一款开源工作流引擎,专为Java EE环境设计,提供了一种轻量级的解决...
**JBPM4与Spring整合详解** JBPM4(Java Business Process Management 4)是一个开源的工作流管理系统,它提供了业务流程的建模、部署、执行和监控功能。Spring框架则是Java应用开发中的一个核心组件,主要负责依赖...
2. **Spring框架整合**: - **依赖注入**:Spring通过XML配置或注解方式管理对象,实现组件间的松耦合。 - **AOP(面向切面编程)**:用于事务管理、日志记录、性能监控等跨切面关注点。 - **Spring JDBC/ORM**:...
在进行jBPM4.4与SSH(Struts2、Spring、Hibernate)框架的整合前,我们需要准备好一系列必要的软件,如JDK、MyEclipse、MySQL、Ant、Tomcat以及Navicat Premium(可选)。确保所有软件的版本兼容,并正确配置环境...
【jbpm与Spring集成】是企业级应用中常见的技术整合,旨在利用jbpm(Java Business Process Management)的流程管理能力,结合Spring框架的灵活服务管理,实现高效、可扩展的业务流程自动化。jbpm是一个开源的工作流...
【jbpm+spring配置】是将业务流程管理(Business Process Management, BPM)框架jbpm与企业级应用开发框架Spring相结合的实践。jbpm是一个开源的BPM解决方案,它提供了流程定义、执行、监控和管理的一整套工具。而...
5. **集成Spring事务管理**:将Jbpm的事务管理委托给Spring,通过 `<tx:annotation-driven>` 或者显式配置事务管理器(PlatformTransactionManager)来实现。 6. **单元测试**:利用Spring的测试支持,编写单元测试...
**标题:“jBPM4与Spring整合的2种方式”** **内容概述:** jBPM4是一款开源的工作流管理系统,它提供了业务流程管理(BPM)和工作流服务。而Spring是一个广泛应用的Java企业级应用框架,它简化了开发、配置和管理...
- **事务管理**: 利用Spring的事务管理功能,确保jbpm的操作与应用的其他数据库操作在同一个事务内,保证数据一致性。 2. **jbpm与Struts的集成**: - **Action与流程交互**: 在Struts的Action中,可以通过调用...
- **事务管理**:Spring的事务管理器可以与JBPM的事务管理相结合,确保流程操作的原子性和一致性。 - **AOP集成**:Spring的AOP可以在流程执行的关键点添加拦截器,实现日志记录、权限检查等功能。 - **Bean管理**:...
在这个版本中,Jbpm与Spring框架和Hibernate ORM工具进行了整合,实现了更加灵活和高效的企业级应用开发。 **1. Jbpm简介** Jbpm4.4是Jbpm系列的一个版本,它主要负责处理业务流程的建模、执行、管理和监控。它支持...
标题中的“spring与JBPM整合ppt”指的是将Spring框架与JBPM(Business Process Management,业务流程管理)系统相结合,以实现更加高效、灵活的企业级应用流程管理。在本PPT中,我们预计会探讨以下几个核心知识点: ...
【JBPM与Spring集成开发】是企业信息化管理中的一项关键技术,它涉及到工作流管理系统与Spring框架的结合,以实现高效、灵活的业务流程自动化。JBPM是一个知名的开源工作流引擎,它允许开发者定义、执行和管理工作...
【jbpm4整合SSH框架详解】 jbpm4是一款开源的工作流管理系统,它为企业提供了一种灵活、可扩展的方式来管理业务流程。SSH(Struts、Spring、Hibernate)是Java开发中最常用的三大框架,它们分别负责视图层、业务层...
【JBPM5与Spring整合详解】 JBPM5是一款开源的工作流管理系统,它提供了一套完整的工作流解决方案,包括流程设计、执行、监控和管理。而Spring框架是Java领域中的一个全能型框架,它在依赖注入、事务管理、AOP...
jbPM集成到Spring框架中,可以利用Spring的强大功能,如事务管理、数据访问和安全控制,同时也可以与其他Spring生态中的组件无缝配合。 在"三大框架与jbPM整合环境"的项目中,myeclipse2014作为开发工具,提供了一...