首页 > 学院 > 开发设计 > 正文

spring+hibernate+jbpm整合成功

2019-11-18 15:28:05
字体:
来源:转载
供稿:网友

终于搞定了,在此感谢chenjin的指点。

从10.31日整合失败后,这块就一直是我的心病,我甚至都跑去了http://www.sPRingframework.org/去发了一个帖,这还是我第一次用英文问问题呢。

最后的配置结果是:

hibernate.cfg.xml、jbpm.cfg.xml在关联spring后保持不变,只需要更改spirng的配置文件就好了。


spring+hibernate+jbpm整合成功<?xml version="1.0" encoding="UTF-8"?>
spring+hibernate+jbpm整合成功<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
spring+hibernate+jbpm整合成功"http://www.springframework.org/dtd/spring-beans.dtd">
spring+hibernate+jbpm整合成功<beans>
spring+hibernate+jbpm整合成功    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
spring+hibernate+jbpm整合成功        <property name="driverClassName">
spring+hibernate+jbpm整合成功            <value>com.MySQL.jdbc.Driver</value>
spring+hibernate+jbpm整合成功        </property>
spring+hibernate+jbpm整合成功        <property name="url">
spring+hibernate+jbpm整合成功            <value>jdbc:mysql://localhost:3306/test</value>
spring+hibernate+jbpm整合成功        </property>
spring+hibernate+jbpm整合成功        <property name="username">
spring+hibernate+jbpm整合成功            <value>root</value>
spring+hibernate+jbpm整合成功        </property>
spring+hibernate+jbpm整合成功        <property name="passWord">
spring+hibernate+jbpm整合成功            <value/>
spring+hibernate+jbpm整合成功        </property>
spring+hibernate+jbpm整合成功    </bean>
spring+hibernate+jbpm整合成功    <!-- Hibernate sessionFactory -->
spring+hibernate+jbpm整合成功    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
spring+hibernate+jbpm整合成功        <property name="dataSource">
spring+hibernate+jbpm整合成功            <ref local="dataSource"/>
spring+hibernate+jbpm整合成功        </property>
spring+hibernate+jbpm整合成功        <property name="mappingLocations">  
spring+hibernate+jbpm整合成功           <value>classpath*:/org/jbpm/**/*.hbm.xml</value>  
spring+hibernate+jbpm整合成功           </property>
spring+hibernate+jbpm整合成功        <property name="hibernateProperties">  
spring+hibernate+jbpm整合成功           <props>  
spring+hibernate+jbpm整合成功               <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
spring+hibernate+jbpm整合成功               <prop key="hibernate.hbm2ddl.auto">update</prop>
spring+hibernate+jbpm整合成功               <prop key="hibernate.jdbc.batch_size">0</prop>
spring+hibernate+jbpm整合成功           </props>
spring+hibernate+jbpm整合成功       </property> 
spring+hibernate+jbpm整合成功    </bean>
spring+hibernate+jbpm整合成功    <!-- Transaction manager for a single Hibernate SessionFactory (alternative to JTA) -->
spring+hibernate+jbpm整合成功    <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
spring+hibernate+jbpm整合成功        <property name="sessionFactory">
spring+hibernate+jbpm整合成功            <ref local="sessionFactory"/>
spring+hibernate+jbpm整合成功        </property>
spring+hibernate+jbpm整合成功    </bean>
spring+hibernate+jbpm整合成功    
spring+hibernate+jbpm整合成功    <!-- reading jBPM process definitions -->
spring+hibernate+jbpm整合成功    <bean id="websaleWorkflow1" class="org.springmodules.workflow.jbpm31.definition.ProcessDefinitionFactoryBean">
spring+hibernate+jbpm整合成功        <property name="definitionLocation"    value="processdefinition.xml"/>
spring+hibernate+jbpm整合成功    </bean>
spring+hibernate+jbpm整合成功    <!-- jBPM configuration--> 
spring+hibernate+jbpm整合成功    <bean id="jbpmConfiguration" class="org.springmodules.workflow.jbpm31.LocalJbpmConfigurationFactoryBean">
spring+hibernate+jbpm整合成功        <property name="sessionFactory" ref="sessionFactory"/>
spring+hibernate+jbpm整合成功        <property name="configuration" value="jbpm.cfg.xml"/>
spring+hibernate+jbpm整合成功        <property name="processDefinitions">
spring+hibernate+jbpm整合成功            <list>
spring+hibernate+jbpm整合成功                <ref local="websaleWorkflow1"/>
spring+hibernate+jbpm整合成功            </list>
spring+hibernate+jbpm整合成功        </property>
spring+hibernate+jbpm整合成功        <property name="createSchema" value="true"/>
spring+hibernate+jbpm整合成功    </bean>
spring+hibernate+jbpm整合成功    <!-- jBPM template -->
spring+hibernate+jbpm整合成功    <bean id="jbpmTemplate" class="org.springmodules.workflow.jbpm31.JbpmTemplate">
spring+hibernate+jbpm整合成功        <constrUCtor-arg index="0" ref="jbpmConfiguration"/>
spring+hibernate+jbpm整合成功        <constructor-arg index="1" ref="websaleWorkflow1"/>
spring+hibernate+jbpm整合成功    </bean>
spring+hibernate+jbpm整合成功
spring+hibernate+jbpm整合成功</beans>
spring+hibernate+jbpm整合成功



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表