首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2EE开发 >

jbpm 与ssh整合 无法创建processEngine-闹心中解决思路

2012-06-14 
jbpm 与ssh整合 无法创建processEngine---闹心中整合已经一天了 上网找了各种资料 怎么都不行各种问题步骤

jbpm 与ssh整合 无法创建processEngine---闹心中
整合已经一天了 上网找了各种资料 怎么都不行各种问题
步骤都一点一点的做 就是不对 各位高手指点一下

tomcat启动时就出错
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'processEngine' defined in ServletContext resource [/WEB-INF/classes/applicationContext.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.factory.BeanDefinitionStoreException: Factory method [protected org.jbpm.api.ProcessEngine org.jbpm.pvm.internal.processengine.SpringHelper.createProcessEngine()] threw exception; nested exception is java.lang.AbstractMethodError: org.apache.xerces.dom.ElementNSImpl.setUserData(Ljava/lang/String;Ljava/lang/Object;Lorg/w3c/dom/UserDataHandler;)Ljava/lang/Object;
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:444)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:903)

我的文件
spring-jbpm4.cfg.xml
<?xml version="1.0" encoding="UTF-8"?>
<jbpm-configuration>
<process-engine-context>
  <string name="spring.cfg" value="spring-jbpm4.xml" />
  </process-engine-context>
<import resource="jbpm.default.cfg.xml" />
<import resource="jbpm.tx.spring.cfg.xml" />
<import resource="jbpm.jpdl.cfg.xml" />
<import resource="jbpm.bpmn.cfg.xml" />
<import resource="jbpm.identity.cfg.xml" />
<import resource="jbpm.businesscalendar.cfg.xml" />
<import resource="jbpm.console.cfg.xml" />
<!--  
<import resource="jbpm.jobexecutor.cfg.xml" />
-->
</jbpm-configuration>
applicationContext.xml

<?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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
  http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
  http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd
  http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">

<!--jbpm4.4工作流 -->
<bean id="springHelper" class="org.jbpm.pvm.internal.processengine.SpringHelper">
<property name="jbpmCfg" value="spring-jbpm4.cfg.xml" />
</bean>
  <bean id="processEngine" factory-bean="springHelper" factory-method="createProcessEngine" />
   
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:8080/test" />
<property name="username" value="root" />
<property name="password" value="1" />
</bean>  
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLInnoDBDialect
</prop>
<prop key="hibernate.default_batch_fetch_size">10</prop>


<prop key="hibernate.max_fetch_depth">0</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>

<property name="mappingLocations">
<list>
<value>classpath:jbpm.execution.hbm.xml</value>
<value>classpath:jbpm.history.hbm.xml</value>
<value>classpath:jbpm.identity.hbm.xml</value>
<value>classpath:jbpm.repository.hbm.xml</value>
<value>classpath:jbpm.task.hbm.xml</value>
</list>
</property>

</bean>

<bean id="txManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
<property name="nestedTransactionAllowed" value="true" />
</bean>

<tx:annotation-driven transaction-manager="txManager" />

<bean id="ehcacheManager"
class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
<property name="configLocation" value="/WEB-INF/classes/ehcache.xml" />
</bean>
<bean id="action" class="com.gold.action.TestAction">
<property name="processEngine" ref="processEngine"></property>
</bean>

</beans>
就是第二个文件了有问题了 
按照步骤把18张表加到数据库中
然后就是
action了
public class TestAction extends ActionSupport
{
  private ProcessEngine processEngine;

  public ProcessEngine getProcessEngine()
  {
  return processEngine;
  }
  public void setProcessEngine(ProcessEngine processEngine)
  {
  this.processEngine = processEngine;
  }

  /**
  * 测试是否整合成功
  */
  public String testJbpm()
  {
  System.out.println("整合成功");
  System.out.println("processEngine: "+processEngine);
  return SUCCESS;
  }
   
  }
请问哪有问题我实在不明白了

要是能有个加到服务器就能运行的例子就给个吧 带jar包的 
邮箱xing.er.kang@163.com


[解决办法]
呵呵 我顶你一下,我也配置环境好多天了,难兄难弟啊

热点排行