spring3 mvc 整合jbpm4.4 步骤

1、整合前准备:jbpm4.4 jar包,解压到相应位置

2、拷贝

1)将jbpm-4.4\install\src\cfg\jbpm下的spring.jbpm.cfg.xml文件拷出,并重新命名为jbpm.cfg.xml放在conf目录下

2)将jbpm-4.4\install\src\cfg\hibernate\spring下的mysql.hibernate.cfg.xml文件拷出,并重命名hibernate.cfg.xml放在conf目录下(为了减少配置文件,我将其文件内容拷出放在了springMVC.xml中,见springMVC.xml文件配置)

3)将lib下的jar和jbpm.jsr考入工程

3、主要是springmvc.xml(有的项目在applicationContextxml中配置)详细配置如下(spring和jbpm的整合主要是事务的整合,要使业务数据的事务和jbpm的事务处在同一个sessionfactory中,本配置用了事务代理,使两者在同一事务下管理):

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
		http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
		http://www.springframework.org/schema/tx 
		http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
		http://www.springframework.org/schema/context
    	http://www.springframework.org/schema/context/spring-context-3.0.xsd
		http://www.springframework.org/schema/mvc
    	http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">

	<bean id="propertyConfigurer"
		class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="locations">
			<list>
				<value>classpath*:**/jdbc.properties</value>
			</list>
		</property>
	</bean>

	<!-- 用于持有ApplicationContext,可以使用SpringContextHolder.getBean('xxxx')的静态方法得到spring 
		bean -->
	<bean class="com.xxx.utils.SpringContextHolder" lazy-init="false" />

	<!-- 自动扫描包,可以写多个 -->
	<context:component-scan base-package="com.xxx"></context:component-scan>

	<!-- 允许对静态资源文件的访问 -->
	<mvc:default-servlet-handler />

	<!-- 注解驱动,自定义日期转换器 -->
	<mvc:annotation-driven conversion-service="conversionService" />
	<bean id="conversionService" class="org.springframework.context.support.ConversionServiceFactoryBean">
		<property name="converters">
			<list>
				<bean class="com.xxx.sys.context.converter.DateConverter" />
			</list>
		</property>
	</bean>

	<!-- 视图解释类 -->
	<bean
		class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/" />
		<property name="suffix" value="" /><!--可为空,方便实现自已的依据扩展名来选择视图解释类的逻辑 -->
		<property name="viewClass"
			value="org.springframework.web.servlet.view.JstlView" />
	</bean>
	 <!-- dataSourceproxy 配置代理管理事务 -->  
    <bean id="ds"  
        class="org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy">
        <property name="targetDataSource" ref="dataSource"></property>
    </bean>  
     
	<!-- 集成数据库 -->
	<bean id="dataSource" class="org.logicalcobwebs.proxool.ProxoolDataSource">
		<property name="driver" value="${db.driver.class}"></property>
		<property name="driverUrl" value="${db.jdbc.url}"></property>
		<property name="user" value="${username}"></property>
		<property name="password" value="${password}"></property>
		<property name="minimumConnectionCount" value="${minIdle}"></property>
		<property name="maximumConnectionCount" value="${maxIdle}"></property>
	</bean>

	<!-- Spring、MyBatis的整合,需要在 Spring 应用上下文中定义至少两样东西:一个SqlSessionFactory和至少一个数据映射器类。 -->
	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<property name="configLocation" value="classpath:mybatis/sqlMapConfig.xml" />
		<property name="dataSource" ref="ds" />
		<property name="mapperLocations" value="classpath:/mybatis/mapper/**/${db.type}/*.xml" />
		
	</bean>

	<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
		<constructor-arg index="0" ref="sqlSessionFactory" />
	</bean>
	
	<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
   		<property name="dataSource">
     		<ref local="ds"/>
   		</property>
 	</bean>

	<!-- 配置事务管理器 -->
	<bean id="myTransactionManager"
		class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="ds" />
	</bean>
	
	<!-- 基于@Transactional的事务管理 -->
	<tx:annotation-driven transaction-manager="myTransactionManager"/>

	<!-- 配置事务拦截器 -->
	<bean id="transactionInterceptor"
		class="org.springframework.transaction.interceptor.TransactionInterceptor">
		<!-- 事务拦截器bean需要依赖注入一个事务管理器 -->
		<property name="transactionManager" ref="myTransactionManager" />
		<property name="transactionAttributes">
			<!-- 下面定义事务传播属性 -->
			<props>
				<prop key="save*">PROPAGATION_REQUIRED</prop>
				<prop key="update*">PROPAGATION_REQUIRED</prop>
				<prop key="delete*">PROPAGATION_REQUIRED</prop>
			</props>
		</property>
	</bean>
	
	<bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
        <!--指定对满足哪些bean name的bean自动生成业务代理 -->
 		<property name="beanNames">
        <!--   下面是所有需要自动创建事务代理的bean-->
            <list>
                <value>*ServiceImpl</value>
                <value>*Service</value>
                <value>*DaoImpl</value>
                <value>*Dao</value>
            </list>
        <!--   此处可增加其他需要自动创建事务代理的bean-->
        </property>
        <!--   下面定义BeanNameAutoProxyCreator所需的事务拦截器-->
        <property name="interceptorNames">
            <list>
                <value>transactionInterceptor</value> 
            </list>
        </property>
    </bean>
 	<!-- aop配置 -->
	<bean class="org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator" />
	
	<!-- 单元测试注入的bean -->
	<bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />
	<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
		<!-- 全局web binder -->
		<property name="webBindingInitializer">
			<bean class="com.xxx.sys.bind.DateFormatBindingInitializer" />
		</property>
	</bean>
	<bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter" />
	<bean class="org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter" />

	<!-- 国际化配置 -->
	<bean id="messageSource"
		class="org.springframework.context.support.ResourceBundleMessageSource">
		<property name="basenames">
			<list>
				<value>properties/i18n/bap</value>
				<value>properties/i18n/pmi</value>
				<value>properties/i18n/resource</value>
				<value>properties/i18n/setting</value>
			</list>
		</property>
	</bean>
	
	<bean id="localeResolver"
		class="org.springframework.web.servlet.i18n.SessionLocaleResolver">
		<property name="defaultLocale" value="zh_CN" />
	</bean>
	
	<!-- jbpm 4.4  start-->
 	  <bean id="springHelper" class="org.jbpm.pvm.internal.processengine.SpringHelper">
    	<property name="jbpmCfg" value="jbpm.cfg.xml"></property>
  	  </bean>
	  <bean id="processEngine" factory-bean="springHelper" factory-method="createProcessEngine" />
	  <bean id="repositoryService" factory-bean="processEngine" factory-method="getRepositoryService" />
	  <bean id="executionService" factory-bean="processEngine" factory-method="getExecutionService" />
	  <bean id="taskService" factory-bean="processEngine" factory-method="getTaskService" />
	  <bean id="historyService" factory-bean="processEngine" factory-method="getHistoryService" />
	  <bean id="identityService" factory-bean="processEngine" factory-method="getIdentityService" />
	  <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
	    <property name="dataSource" ref="ds" />
	    <property name="mappingResources">
	        <list>
	            <value>jbpm.repository.hbm.xml</value>
	            <value>jbpm.execution.hbm.xml</value>
	            <value>jbpm.history.hbm.xml</value>
	            <value>jbpm.task.hbm.xml</value>
	            <value>jbpm.identity.hbm.xml</value>
	        </list>
	    </property>
	    <property name="hibernateProperties">
	        <props>
	                <prop key="hibernate.dialect">${dataSource.dialect}</prop>
	                <prop key="hibernate.hbm2ddl.auto">${dataSource.hbm2ddl.auto}</prop>
	                <prop key="hibernate.format_sql">true</prop>
	            </props>
	    </property>
	    <!-- 使用TransactionAwareDataSourceProxy管理事务与mybatis处于同一事务管理下 -->  
        <property name="useTransactionAwareDataSource" value="true"></property>  
	  </bean>
  <!-- jbpm 4.4  end-->
  
	<!-- 拦截器 -->
	<mvc:interceptors>
		<bean class="com.xxx.plat.interceptor.LoginSessionInterceptor" />
	</mvc:interceptors>
</beans>


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值