`
linliangyi2007
  • 浏览: 1012536 次
  • 性别: Icon_minigender_1
  • 来自: 福州
社区版块
存档分类
最新评论

jBPM-JPDL v3.2环境部署——发布到Tomcat + MySQL

阅读更多

相关资料:

 

jBPM学习笔记(流程设计与控制)

jBPM学习笔记(框架设计简介)

 

系统平台:

 

系统环境:

Windows 2003 | SUN JDK1.6U4 | Tomcat6.0.14 | jbpm-starters-kit-3.1.4 | MySQL 6.0

主机完整名称:

       zsy-aten

浏览器

       Internet Explorer 6.0

 

安装包及相关软件:

 

1、  安装JDKMySQL

JDK的安装这里就不多说了,学过Java的人都知道,本实验安装的是jdk-6u4版本。安装完后记得添加JAVA_HOME的环境变量。

MySQL的安装不属于本文的介绍范围,请参阅相关文档。本实验安装的是MySQL 6.0版本,安装完后建立的数据库名为jbpm,创建的用户名为jbpmuser,密码为shine

2、  安装Tomcat

下载安装Tomcat-6.0.16是目前最新版本:http://apache.mirror.phpchina.com/tomcat/tomcat-6/v6.0.16/bin/apache-tomcat-6.0.16.exe ;要在JDK安装之后安装Tomcat,安装过程中会自动搜索JRE的目录,当然也可以选择其它的JRE,其它默认设置即可。

3、  安装Ant

Ant 是一个编译工具,使用 jBPM 时必须用它来编译文件, jBPM 中的很多操作都要用到 Ant ,安装方法如下:

1 先下载:http://apache.mirror.phpchina.com/ant/binaries/apache-ant-1.7.0-bin.zip

2 解压到 E:\Java\tools\apache-ant-1.7.0 (当然其他目录也可以);

3 设置环境变量:ANT_HOME= E:\Java\tools\apache-ant-1.7.0

4)把 %ANT_HOME%\bin 加入到环境变量 PATH 中。

4、  安装jBPM

下载jBPM-JPDL本为3.2.2http://labs.jboss.com/jbossjbpm/jbpm_downloads/下载jPDL Suite版,这个版本是包含所有的一整套工具,下载后是个压缩包解压到 E:\Java\tools :、\jbpm-jpdl-3.2.2 ,目录下主要包含以下几个子目录:

l  src —— jBPM 的源代码

l  config —— jBPMHibernatelog4j的配置文件

l  db —— 各种数据库的建表SQL语句

l  lib —— 依赖的第三方依赖类库

l  doc —— API文档及用户使用向导

l  designer —— 辅助开发 jBPM Eclipse 插件,具体在 eclipse子目录中

l  server —— 一个已经配置好了的基于 JBoss jBPM 控制台及示例

5、  安装EclipsejBPM开发插件

Eclipse不是开发 jBPM 必须的工具,但它是对 jBPM 开发很有帮助的工具,特别是 jBPM 提供了一个 Eclipse 插件用来辅助开发 jBPM 。关于 Eclipse 的安装请参阅相关文档。本实验安装的是MyEclipse6.0集成Eclipse3.3

       安装完Eclipse安装jBPM的开发插件,步骤如下:

(1)       打开Eclipse选择菜单“Help->Software Updates->Find and Install”;

(2)       弹出窗口中选择“Search for new features to install”,然后点击“Next >”;如图

jBPM-001

 

(3)       点击按扭“New Local Site…”选择插件目录,位于designer\ eclipse目录下,如:E:\Java\tools\jbpm-jpdl-3.2.2\designer\eclipse。选定后点“OK”,如图

jBPM-002

 

(4)       选中“designer/eclipse”,然后点击“Finish”,如图

jBPM-003 

 

(5)       然后选择同意条款,接提示步骤安装就可以了。

 

        到此为止需要的所有工具都安装好了。接下来先体验一下jBPM工作流。在 JBoss jBPM Starters Kit jbpm-server 目录是一个已经在JBoss中配置好的了 jBPM 示例,双击 jbpm-server 目录下的 start.bat 文件,启动 JBoss 服务。打开网页: http://localhost:8080/ jbpm-console 得到如下页面:

jBPM-004

这是一个流程控制管理平台,用右边的账号与密码就可以登录,这个控制台包括流程管理,可以部署流程、删除流程、查看流程图、管理流程实例等;还有任务管理,工作管理及用户与用户组管理。

 

基于TomcatMySQL的部署:

 

       现在要把上面演示的例子部署到Tomcat中,并将数据数配置为MySQL

STEP 1,初始化数据库

jBPM 需要数据库支持, jBPM 会把自己的一个初始化数据存储到数据库,同时工作流的数据也是存储到数据库中的。 jBPM 使用 Hibernate 作为的存储层。在E:\Java\tools\jbpm-jpdl-3.2.2\db\目录下有个jbpm.jpdl.mysql.sql数据库脚本文件。我们不能直接导入该文件, 会提示有错误, 应为该文件格式有问题, 首先打开该文件(推荐UltraEdit), 把前面的 alter table JBPM_XX 语句都删除(因为我们使用的是新的数据库,所以需要这些语句, 这个脚本文件是升级3.2的数据库表结构用的) 然后在每一行前面添加一个分号 不然脚本执行会出错。这样就可以用source命令导入了。 导入后, 表结构创建成功。

 STEP 2,准备发布包

       E:\Java\tools\jbpm-jpdl-3.2.2\deploy 文件夹下 运行ant customize.console.for.tomcat。执行命令后会在 E:\Java\tools\jbpm-jpdl-3.2.2\deploy\customized文件夹下生成一个jbpm-console.war 文件,用WinRaR解压开,并复制到已安装Tomcatwebapps目录下,jbpm还需三个依赖类库,分别是commons-collections.jarehcache-1.2.3.jarjta.jar,当然还有个MySQL驱动mysql-connector-java-5.0.7-bin.jar,添加这些jar文件 \$CATALINA_HOME\webapps\jbpm-console\WEB-INF\lib目录下。

 STEP 3,修改Hibernate数据库配置文件

       修改\$CATALINA_HOME\webapps\jbpm-console\WEB-INF\classeshibernate.cfg.xml文件。这是Hibernate的数据库配置文件,要做一些修改,原来内容如下:

<!--  hibernate dialect -->

  <property name="hibernate.dialect">org.hibernate.dialect.HSQLDialect</property>

<!--  JDBC connection properties (begin) ===

  <property name="hibernate.connection.driver_class">

org.hsqldb.jdbcDriver</property>

  <property name="hibernate.connection.url">jdbc:hsqldb:mem:jbpm</property>

  <property name="hibernate.connection.username">sa</property>

  <property name="hibernate.connection.password"></property>

==== JDBC connection properties (end) -->

  <property name="hibernate.cache.provider_class">

org.hibernate.cache.HashtableCacheProvider</property>

<!--  DataSource properties (begin) -->

  <property name="hibernate.connection.datasource">java:/JbpmDS</property>

<!--  DataSource properties (end) -->

修改后如下:

<!-- hibernate dialect -->

<property name="hibernate.dialect">

org.hibernate.dialect.MySQLInnoDBDialect</property>

<property name="hibernate.connection.driver_class">

com.mysql.jdbc.Driver</property>

  <property name="hibernate.connection.url">

jdbc:mysql://localhost:3306/jbpm</property>

  <property name="hibernate.connection.username">jbpmuser</property>

  <property name="hibernate.connection.password">shine</property>

<property name="hibernate.cache.provider_class">

org.hibernate.cache.HashtableCacheProvider</property>
 STEP 4,设置Tomcat安全域

       有两种方法都可以实现,但摧荐第一种方法。

方法一:配置一个JDBC Realm,在\$CATALINA_HOME\webapps\jbpm-console\META-INF目录下新建context.xml文件,内容如下:

<?xml version="1.0" encoding="UTF-8"?>

<Context>

<Realm className="org.apache.catalina.realm.JDBCRealm"

  driverName="com.mysql.jdbc.Driver"

  connectionURL="jdbc:mysql://localhost:3306/jbpm"

  connectionName="jbpmuser"

  connectionPassword="shine"

userTable="JBPM_ID_USER u, JBPM_ID_MEMBERSHIP m, JBPM_ID_GROUP g"

  userNameCol="g.TYPE_ = 'security-role' AND m.GROUP_ = g.ID_ AND m.USER_ = u.ID_ AND u.NAME_"

  userCredCol="DISTINCT u.PASSWORD_"

  userRoleTable="JBPM_ID_USER u, JBPM_ID_MEMBERSHIP m, JBPM_ID_GROUP g"

  roleNameCol="g.NAME_" />

</Context>

方法二:直接修改 /$CATALINA_HOME/conf/tomcat-users.xml文件来设置安全域。为了不和tomcat已有的用户冲突,这里把 tomcat以前的登陆帐号username="admin" 修改为username="tadmin",修改后的文件如下:

<?xml version='1.0' encoding='utf-8'?>

<tomcat-users>

  <role rolename="user"/>

  <role rolename="administrator"/>

  <role rolename="manager"/>

  <role rolename="sales"/>

  <role rolename="hr"/>

  <role rolename="admin"/>

  <role rolename="participant"/>

  <user username="user" password="user" roles="user,sales"/>

  <user username="shipper" password="shipper" roles="user,hr"/>

  <user username="manager" password="manager" roles="admin,hr,manager,user,sales"/>

  <user username="tadmin" password="" roles="admin,manager"/>
  <user username="admin" password="admin" roles="admin,user,hr"/>
</tomcat-users>

 STEP 5,初始化基础的用户数据

MySQL数据库中执行以下SQL语句,进行初始化用户信息,如下:

INSERT INTO JBPM_ID_GROUP VALUES(1,'G','sales','organisation',NULL);

INSERT INTO JBPM_ID_GROUP VALUES(2,'G','admin','security-role',NULL);

INSERT INTO JBPM_ID_GROUP VALUES(3,'G','user','security-role',NULL);

INSERT INTO JBPM_ID_GROUP VALUES(4,'G','hr','organisation',NULL);

INSERT INTO JBPM_ID_GROUP VALUES(5,'G','manager','security-role',NULL);

INSERT INTO JBPM_ID_USER VALUES(1,'U','user','user@sample.domain','user');

INSERT INTO JBPM_ID_USER VALUES(2,'U','manager','manager@sample.domain','manager');

INSERT INTO JBPM_ID_USER VALUES(3,'U','admin','admin@sample.domain','admin');

INSERT INTO JBPM_ID_USER VALUES(4,'U','shipper','shipper@sample.domain','shipper');

INSERT INTO JBPM_ID_MEMBERSHIP VALUES(1,'M',NULL,NULL,2,4);

INSERT INTO JBPM_ID_MEMBERSHIP VALUES(2,'M',NULL,NULL,3,4);

INSERT INTO JBPM_ID_MEMBERSHIP VALUES(3,'M',NULL,NULL,4,4);

INSERT INTO JBPM_ID_MEMBERSHIP VALUES(4,'M',NULL,NULL,4,3);

INSERT INTO JBPM_ID_MEMBERSHIP VALUES(5,'M',NULL,NULL,1,3);

INSERT INTO JBPM_ID_MEMBERSHIP VALUES(6,'M',NULL,NULL,2,3);

INSERT INTO JBPM_ID_MEMBERSHIP VALUES(7,'M',NULL,NULL,3,3);

INSERT INTO JBPM_ID_MEMBERSHIP VALUES(8,'M',NULL,NULL,3,2);

INSERT INTO JBPM_ID_MEMBERSHIP VALUES(9,'M',NULL,NULL,2,2);

INSERT INTO JBPM_ID_MEMBERSHIP VALUES(10,'M',NULL,NULL,2,5);

INSERT INTO JBPM_ID_MEMBERSHIP VALUES(11,'M',NULL,'boss',2,1);

INSERT INTO JBPM_ID_MEMBERSHIP VALUES(12,'M',NULL,NULL,1,1);
 STEP 6,启动Tomcat服务

启动时查看Tomcat的日志,检查是否正常启动,未添加所有支持库或数据库配置出错,都会引起启动失败。

       注意:到此为止启动TomcatJBPM服务就能正常运行了,已经可以在上面发布流程,接着第五步中部署一个jbpm自带的流程例子。 

 

STEP 7,发布例子流程

       打开网页:http://localhost:8080/jbpm 得到如下页面就说明已经部署成功:

jBPM-004 

用右边的manage账号登录,如下图:

jBPM-005

点击“Deploy”转到部署流程页面,点击“浏览”按扭选择E:\Java\tools\jbpm-jpdl-3.2.2\examples\websale\target\websale.jpdl文件,名后点击“Deploy”按扭部署。

jBPM-005 

 

 

 

 

 

 

 

 

分享到:
评论
99 楼 xlbobofay 2009-03-06  
jbpm配置中Not binding factory to JNDI, no JNDI name configured,请问这个问题应该怎没解决
98 楼 qlyy840116 2009-03-04  
我按照楼主的方法都弄好了,TOMCAT启动也没问题,但只要输入http://127.0.0.1:8080/jbpm-console
就报503错误:
HTTP Status 503 - Servlet Faces Servlet is currently unavailable

--------------------------------------------------------------------------------

type Status report

message Servlet Faces Servlet is currently unavailable

description The requested service (Servlet Faces Servlet is currently unavailable) is not currently available.


--------------------------------------------------------------------------------

Apache Tomcat/6.0.18
控制台上也没有任何错误输出,请楼主看一下是怎么回事
97 楼 booyun 2009-03-02  
经过调试发现 项目在TOMCAT下无法启动,查看日志如下,不解请教高人。
2009-3-2 11:42:56 org.apache.catalina.core.StandardContext listenerStart
严重: Exception sending context initialized event to listener instance of class com.sun.faces.config.ConfigureListener
java.lang.LinkageError: loader constraint violation: when resolving interface method "javax.servlet.jsp.JspApplicationContext.getExpressionFactory()Ljavax/el/ExpressionFactory;" the class loader (instance of org/apache/catalina/loader/WebappClassLoader) of the current class, com/sun/faces/config/ConfigureListener, and the class loader (instance of org/apache/catalina/loader/StandardClassLoader) for resolved class, javax/servlet/jsp/JspApplicationContext, have different Class objects for the type javax/el/ExpressionFactory used in the signature
at com.sun.faces.config.ConfigureListener.registerELResolverAndListenerWithJsp(ConfigureListener.java:1712)
at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:513)
at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3830)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4337)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:791)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:771)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:525)
at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java:920)
at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:883)
at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:492)
at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138)
at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:117)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1053)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
at org.apache.catalina.core.StandardService.start(StandardService.java:516)
at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
96 楼 meihua212 2009-02-12  
希望明天能搞懂,争取这周把JBPM熟悉下,下周能和SSH整合
95 楼 meihua212 2009-02-12  
第一种方法总是显示Login failed. Invalid user name or password,我已经把ojdbc5.jar放到tomcat6.0中的lib下,不知道怎么回事?
2009-2-12 21:42:55 org.apache.catalina.core.AprLifecycleListener init
信息: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\MyEclipse 6.0\bin;C:\tomcat6\bin
2009-2-12 21:42:55 org.apache.coyote.http11.Http11Protocol init
信息: Initializing Coyote HTTP/1.1 on http-8089
2009-2-12 21:42:55 org.apache.catalina.startup.Catalina load
信息: Initialization processed in 867 ms
2009-2-12 21:42:55 org.apache.catalina.core.StandardService start
信息: Starting service Catalina
2009-2-12 21:42:55 org.apache.catalina.core.StandardEngine start
信息: Starting Servlet Engine: Apache Tomcat/6.0.16
2009-2-12 21:42:55 org.apache.catalina.startup.HostConfig deployWAR
信息: Deploying web application archive jbpm-console.war
2009-2-12 21:42:56 org.apache.catalina.core.StandardContext addApplicationListener
信息: The listener "org.jbpm.web.JobExecutorLauncher" is already configured for this context. The duplicate definition has been ignored.
2009-2-12 21:42:57 com.sun.faces.config.ConfigureListener contextInitialized
信息: Initializing Sun's JavaServer Faces implementation (1.2_04-b16-p02) for context '/jbpm-console'
2009-2-12 21:42:58 org.jbpm.JbpmConfiguration getInstance
信息: using jbpm configuration resource 'jbpm.cfg.xml'
2009-2-12 21:42:58 org.jbpm.persistence.db.StaleObjectLogConfigurer hideStaleObjectExceptions
信息: stale object exceptions will be hidden from logging
2009-2-12 21:42:58 org.hibernate.cfg.Environment <clinit>
信息: Hibernate 3.2.3
2009-2-12 21:42:58 org.hibernate.cfg.Environment <clinit>
信息: hibernate.properties not found
2009-2-12 21:42:58 org.hibernate.cfg.Environment buildBytecodeProvider
信息: Bytecode provider name : cglib
2009-2-12 21:42:58 org.hibernate.cfg.Environment <clinit>
信息: using JDK 1.4 java.sql.Timestamp handling
2009-2-12 21:42:58 org.hibernate.cfg.Configuration configure
信息: configuring from resource: hibernate.cfg.xml
2009-2-12 21:42:58 org.hibernate.cfg.Configuration getConfigurationInputStream
信息: Configuration resource: hibernate.cfg.xml
2009-2-12 21:42:59 org.apache.catalina.core.StandardContext addApplicationListener
信息: The listener "listeners.ContextListener" is already configured for this context. The duplicate definition has been ignored.
2009-2-12 21:42:59 org.apache.catalina.core.StandardContext addApplicationListener
信息: The listener "listeners.SessionListener" is already configured for this context. The duplicate definition has been ignored.
2009-2-12 21:42:59 org.apache.catalina.core.ApplicationContext log
信息: ContextListener: contextInitialized()
2009-2-12 21:42:59 org.apache.catalina.core.ApplicationContext log
信息: SessionListener: contextInitialized()
2009-2-12 21:42:59 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/identity/User.hbm.xml
2009-2-12 21:42:59 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.identity.User -> JBPM_ID_USER
2009-2-12 21:42:59 org.hibernate.cfg.HbmBinder bindCollection
信息: Mapping collection: org.jbpm.identity.User.permissions -> JBPM_ID_PERMISSIONS
2009-2-12 21:42:59 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/identity/Group.hbm.xml
2009-2-12 21:42:59 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.identity.Group -> JBPM_ID_GROUP
2009-2-12 21:42:59 org.apache.coyote.http11.Http11Protocol start
信息: Starting Coyote HTTP/1.1 on http-8089
2009-2-12 21:43:00 org.apache.jk.common.ChannelSocket init
信息: JK: ajp13 listening on /0.0.0.0:8009
2009-2-12 21:43:00 org.apache.jk.server.JkMain start
信息: Jk running ID=0 time=0/47  config=null
2009-2-12 21:43:00 org.apache.catalina.startup.Catalina start
信息: Server startup in 4311 ms
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindCollection
信息: Mapping collection: org.jbpm.identity.Group.permissions -> JBPM_ID_PERMISSIONS
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/identity/Membership.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.identity.Membership -> JBPM_ID_MEMBERSHIP
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindCollection
信息: Mapping collection: org.jbpm.identity.Membership.permissions -> JBPM_ID_PERMISSIONS
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/db/hibernate.queries.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/action/MailAction.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/def/ProcessDefinition.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.graph.def.ProcessDefinition -> JBPM_PROCESSDEFINITION
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/def/Node.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.graph.def.Node -> JBPM_NODE
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/def/Transition.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.graph.def.Transition -> JBPM_TRANSITION
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/def/Event.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.graph.def.Event -> JBPM_EVENT
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/def/Action.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.graph.def.Action -> JBPM_ACTION
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/def/SuperState.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.def.SuperState -> JBPM_NODE
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/def/ExceptionHandler.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.graph.def.ExceptionHandler -> JBPM_EXCEPTIONHANDLER
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/instantiation/Delegation.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.instantiation.Delegation -> JBPM_DELEGATION
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/action/Script.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.action.Script -> JBPM_ACTION
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/node/StartState.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.node.StartState -> JBPM_NODE
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/node/EndState.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.node.EndState -> JBPM_NODE
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/node/ProcessState.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.node.ProcessState -> JBPM_NODE
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/node/Decision.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.node.Decision -> JBPM_NODE
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindCollection
信息: Mapping collection: org.jbpm.graph.node.Decision.decisionConditions -> JBPM_DECISIONCONDITIONS
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/node/Fork.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.node.Fork -> JBPM_NODE
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/node/Join.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.node.Join -> JBPM_NODE
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/node/MailNode.hbm.xml
2009-2-12 21:43:00 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.node.MailNode -> JBPM_NODE
2009-2-12 21:43:00 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/node/State.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.node.State -> JBPM_NODE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/node/TaskNode.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.node.TaskNode -> JBPM_NODE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/def/ContextDefinition.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/def/VariableAccess.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.context.def.VariableAccess -> JBPM_VARIABLEACCESS
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/bytes/ByteArray.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.bytes.ByteArray -> JBPM_BYTEARRAY
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindCollection
信息: Mapping collection: org.jbpm.bytes.ByteArray.byteBlocks -> JBPM_BYTEBLOCK
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/module/def/ModuleDefinition.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.module.def.ModuleDefinition -> JBPM_MODULEDEFINITION
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/file/def/FileDefinition.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.file.def.FileDefinition -> JBPM_MODULEDEFINITION
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/def/TaskMgmtDefinition.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.taskmgmt.def.TaskMgmtDefinition -> JBPM_MODULEDEFINITION
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/def/Swimlane.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.taskmgmt.def.Swimlane -> JBPM_SWIMLANE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/def/Task.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.taskmgmt.def.Task -> JBPM_TASK
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/def/TaskController.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.taskmgmt.def.TaskController -> JBPM_TASKCONTROLLER
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/scheduler/def/CreateTimerAction.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.scheduler.def.CreateTimerAction -> JBPM_ACTION
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/scheduler/def/CancelTimerAction.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.scheduler.def.CancelTimerAction -> JBPM_ACTION
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/exe/Comment.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.graph.exe.Comment -> JBPM_COMMENT
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/exe/ProcessInstance.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.graph.exe.ProcessInstance -> JBPM_PROCESSINSTANCE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/exe/Token.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.graph.exe.Token -> JBPM_TOKEN
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/exe/RuntimeAction.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.graph.exe.RuntimeAction -> JBPM_RUNTIMEACTION
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/module/exe/ModuleInstance.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.module.exe.ModuleInstance -> JBPM_MODULEINSTANCE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/exe/ContextInstance.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.exe.ContextInstance -> JBPM_MODULEINSTANCE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/exe/TokenVariableMap.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.context.exe.TokenVariableMap -> JBPM_TOKENVARIABLEMAP
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/exe/VariableInstance.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.context.exe.VariableInstance -> JBPM_VARIABLEINSTANCE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/exe/variableinstance/ByteArrayInstance.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.exe.variableinstance.ByteArrayInstance -> JBPM_VARIABLEINSTANCE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/exe/variableinstance/DateInstance.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.exe.variableinstance.DateInstance -> JBPM_VARIABLEINSTANCE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/exe/variableinstance/DoubleInstance.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.exe.variableinstance.DoubleInstance -> JBPM_VARIABLEINSTANCE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/exe/variableinstance/HibernateLongInstance.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateLongInstance -> JBPM_VARIABLEINSTANCE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/exe/variableinstance/HibernateStringInstance.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateStringInstance -> JBPM_VARIABLEINSTANCE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/exe/variableinstance/LongInstance.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.exe.variableinstance.LongInstance -> JBPM_VARIABLEINSTANCE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/exe/variableinstance/NullInstance.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.exe.variableinstance.NullInstance -> JBPM_VARIABLEINSTANCE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.exe.variableinstance.StringInstance -> JBPM_VARIABLEINSTANCE
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/job/Job.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.job.Job -> JBPM_JOB
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/job/Timer.hbm.xml
2009-2-12 21:43:01 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.job.Timer -> JBPM_JOB
2009-2-12 21:43:01 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/job/ExecuteNodeJob.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.job.ExecuteNodeJob -> JBPM_JOB
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/job/ExecuteActionJob.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.job.ExecuteActionJob -> JBPM_JOB
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/exe/TaskMgmtInstance.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.taskmgmt.exe.TaskMgmtInstance -> JBPM_MODULEINSTANCE
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.taskmgmt.exe.TaskInstance -> JBPM_TASKINSTANCE
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollection
信息: Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.pooledActors -> JBPM_TASKACTORPOOL
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/exe/PooledActor.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.taskmgmt.exe.PooledActor -> JBPM_POOLEDACTOR
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollection
信息: Mapping collection: org.jbpm.taskmgmt.exe.PooledActor.taskInstances -> JBPM_TASKACTORPOOL
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/exe/SwimlaneInstance.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.taskmgmt.exe.SwimlaneInstance -> JBPM_SWIMLANEINSTANCE
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/logging/log/ProcessLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindRootPersistentClassCommonValues
信息: Mapping class: org.jbpm.logging.log.ProcessLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/logging/log/MessageLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.logging.log.MessageLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/logging/log/CompositeLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.logging.log.CompositeLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/log/ActionLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.log.ActionLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/log/NodeLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.log.NodeLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/log/ProcessInstanceCreateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.log.ProcessInstanceCreateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/log/ProcessInstanceEndLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.log.ProcessInstanceEndLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/log/ProcessStateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.log.ProcessStateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/log/SignalLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.log.SignalLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/log/TokenCreateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.log.TokenCreateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/log/TokenEndLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.log.TokenEndLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/graph/log/TransitionLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.log.TransitionLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/log/VariableLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.log.VariableLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/log/VariableCreateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.log.VariableCreateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/log/VariableDeleteLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.log.VariableDeleteLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/log/VariableUpdateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.log.VariableUpdateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/log/variableinstance/ByteArrayUpdateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.log.variableinstance.ByteArrayUpdateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/log/variableinstance/DateUpdateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.log.variableinstance.DateUpdateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/log/variableinstance/DoubleUpdateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.log.variableinstance.DoubleUpdateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/log/variableinstance/HibernateLongUpdateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.log.variableinstance.HibernateLongUpdateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/log/variableinstance/HibernateStringUpdateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.log.variableinstance.HibernateStringUpdateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/log/variableinstance/LongUpdateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.log.variableinstance.LongUpdateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.log.variableinstance.StringUpdateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/log/TaskLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.taskmgmt.log.TaskLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/log/TaskCreateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.taskmgmt.log.TaskCreateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/log/TaskAssignLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.taskmgmt.log.TaskAssignLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/log/TaskEndLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.taskmgmt.log.TaskEndLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/log/SwimlaneLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/log/SwimlaneCreateLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneCreateLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration addResource
信息: Reading mappings from resource : org/jbpm/taskmgmt/log/SwimlaneAssignLog.hbm.xml
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneAssignLog -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.cfg.Configuration doConfigure
信息: Configured SessionFactory: null
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.context.def.ContextDefinition -> JBPM_MODULEDEFINITION
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindSubclass
信息: Mapping subclass: org.jbpm.graph.action.MailAction -> JBPM_ACTION
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.identity.User.memberships -> JBPM_ID_MEMBERSHIP
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.identity.Group.children -> JBPM_ID_GROUP
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.identity.Group.memberships -> JBPM_ID_MEMBERSHIP
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.ProcessDefinition.events -> JBPM_EVENT
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.ProcessDefinition.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.ProcessDefinition.nodes -> JBPM_NODE
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.ProcessDefinition.actions -> JBPM_ACTION
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.ProcessDefinition.definitions -> JBPM_MODULEDEFINITION
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.Node.events -> JBPM_EVENT
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.Node.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.Node.leavingTransitions -> JBPM_TRANSITION
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.Node.arrivingTransitions -> JBPM_TRANSITION
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.Transition.events -> JBPM_EVENT
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.Transition.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.Event.actions -> JBPM_ACTION
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.SuperState.nodes -> JBPM_NODE
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.def.ExceptionHandler.actions -> JBPM_ACTION
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.action.Script.variableAccesses -> JBPM_VARIABLEACCESS
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.node.ProcessState.variableAccesses -> JBPM_VARIABLEACCESS
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.node.TaskNode.tasks -> JBPM_TASK
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.file.def.FileDefinition.processFiles -> JBPM_BYTEARRAY
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes -> JBPM_SWIMLANE
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks -> JBPM_TASK
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.taskmgmt.def.Swimlane.tasks -> JBPM_TASK
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.taskmgmt.def.Task.events -> JBPM_EVENT
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.taskmgmt.def.Task.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.taskmgmt.def.TaskController.variableAccesses -> JBPM_VARIABLEACCESS
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.exe.ProcessInstance.runtimeActions -> JBPM_RUNTIMEACTION
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.exe.ProcessInstance.instances -> JBPM_MODULEINSTANCE
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.exe.Token.children -> JBPM_TOKEN
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.graph.exe.Token.comments -> JBPM_COMMENT
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.context.exe.ContextInstance.tokenVariableMaps -> JBPM_TOKENVARIABLEMAP
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.context.exe.TokenVariableMap.variableInstances -> JBPM_VARIABLEINSTANCE
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.swimlaneInstances -> JBPM_SWIMLANEINSTANCE
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.taskInstances -> JBPM_TASKINSTANCE
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.variableInstances -> JBPM_VARIABLEINSTANCE
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.comments -> JBPM_COMMENT
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.taskmgmt.exe.SwimlaneInstance.pooledActors -> JBPM_POOLEDACTOR
2009-2-12 21:43:02 org.hibernate.cfg.HbmBinder bindCollectionSecondPass
信息: Mapping collection: org.jbpm.logging.log.CompositeLog.children -> JBPM_LOG
2009-2-12 21:43:02 org.hibernate.connection.DriverManagerConnectionProvider configure
信息: Using Hibernate built-in connection pool (not for production use!)
2009-2-12 21:43:02 org.hibernate.connection.DriverManagerConnectionProvider configure
信息: Hibernate connection pool size: 20
2009-2-12 21:43:02 org.hibernate.connection.DriverManagerConnectionProvider configure
信息: autocommit mode: false
2009-2-12 21:43:02 org.hibernate.connection.DriverManagerConnectionProvider configure
信息: using driver: oracle.jdbc.driver.OracleDriver at URL: jdbc:oracle:thin:@127.0.0.1:1521:ora9
2009-2-12 21:43:02 org.hibernate.connection.DriverManagerConnectionProvider configure
信息: connection properties: {user=scott, password=****}
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: RDBMS: Oracle, version: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: JDBC driver: Oracle JDBC driver, version: 9.2.0.1.0
2009-2-12 21:43:03 org.hibernate.dialect.Dialect <init>
信息: Using dialect: org.hibernate.dialect.Oracle9Dialect
2009-2-12 21:43:03 org.hibernate.transaction.TransactionFactoryFactory buildTransactionFactory
信息: Using default transaction strategy (direct JDBC transactions)
2009-2-12 21:43:03 org.hibernate.transaction.TransactionManagerLookupFactory getTransactionManagerLookup
信息: No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: Automatic flush during beforeCompletion(): disabled
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: Automatic session close at end of transaction: disabled
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: JDBC batch size: 15
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: JDBC batch updates for versioned data: disabled
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: Scrollable result sets: enabled
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: JDBC3 getGeneratedKeys(): disabled
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: Connection release mode: auto
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: Default batch fetch size: 1
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: Generate SQL with comments: disabled
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: Order SQL updates by primary key: disabled
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory createQueryTranslatorFactory
信息: Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
2009-2-12 21:43:03 org.hibernate.hql.ast.ASTQueryTranslatorFactory <init>
信息: Using ASTQueryTranslatorFactory
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: Query language substitutions: {}
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: JPA-QL strict compliance: disabled
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: Second-level cache: enabled
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: Query cache: disabled
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory createCacheProvider
信息: Cache provider: org.hibernate.cache.HashtableCacheProvider
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: Optimize cache for minimal puts: disabled
2009-2-12 21:43:03 org.hibernate.cfg.SettingsFactory buildSettings
信息: Structured second-level cache entries: disabled
2009-2-12 21:43:04 org.hibernate.cfg.SettingsFactory buildSettings
信息: Statistics: disabled
2009-2-12 21:43:04 org.hibernate.cfg.SettingsFactory buildSettings
信息: Deleted entity synthetic identifier rollback: disabled
2009-2-12 21:43:04 org.hibernate.cfg.SettingsFactory buildSettings
信息: Default entity-mode: pojo
2009-2-12 21:43:04 org.hibernate.cfg.SettingsFactory buildSettings
信息: Named query checking : enabled
2009-2-12 21:43:04 org.hibernate.impl.SessionFactoryImpl <init>
信息: building session factory
2009-2-12 21:43:07 org.hibernate.impl.SessionFactoryObjectFactory addInstance
信息: Not binding factory to JNDI, no JNDI name configured
2009-2-12 21:43:25 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/jsf-facelets.jar!/META-INF/jstl-fn.taglib.xml
2009-2-12 21:43:25 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/gravel.jar!/META-INF/gravel-simple.taglib.xml
2009-2-12 21:43:25 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/gravel.jar!/META-INF/gravel-nav.taglib.xml
2009-2-12 21:43:25 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/jbpm4jsf.jar!/META-INF/core.taglib.xml
2009-2-12 21:43:26 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-core.taglib.xml
2009-2-12 21:43:26 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/gravel.jar!/META-INF/gravel-data.taglib.xml
2009-2-12 21:43:26 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-html.taglib.xml
2009-2-12 21:43:26 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/gravel.jar!/META-INF/gravel-compat.taglib.xml
2009-2-12 21:43:26 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/jbpm4jsf.jar!/META-INF/identity.taglib.xml
2009-2-12 21:43:26 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/jsf-facelets.jar!/META-INF/jstl-core.taglib.xml
2009-2-12 21:43:26 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/jbpm4jsf.jar!/META-INF/tfl-compat.taglib.xml
2009-2-12 21:43:26 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/jbpm4jsf.jar!/META-INF/tfl.taglib.xml
2009-2-12 21:43:26 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-ui.taglib.xml
2009-2-12 21:43:26 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/jbpm4jsf.jar!/META-INF/tf-compat.taglib.xml
2009-2-12 21:43:26 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/jbpm4jsf.jar!/META-INF/tf.taglib.xml
2009-2-12 21:43:26 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
信息: Added Library from: jar:file:/C:/tomcat6/webapps/jbpm-console/WEB-INF/lib/gravel.jar!/META-INF/gravel-action.taglib.xml

第二种方法是可以的
94 楼 yxjlovy 2009-02-12  
发布时候出错:Error deploying process: Archive is null
怎么回事呢
93 楼 ysihaoy 2009-02-12  
很好的文章,不错,今天刚刚学到这里
92 楼 meihua212 2009-02-11  
今天在公司没有跑起来,看上面回帖貌似缺少JSF包,明天努力,争取这里礼拜入门,
91 楼 linliangyi2007 2009-02-07  
万恶的JSF啊~~~,将大家的注意力全扯歪了~~
90 楼 wangice 2009-02-07  
hbksunshine 写道
2008-4-28 14:12:46 org.apache.catalina.core.StandardContext listenerStart
严重: Exception sending context initialized event to listener instance of class com.sun.faces.config.ConfigureListener
java.lang.NoClassDefFoundError: edu/emory/mathcs/backport/java/util/Arrays
at com.sun.faces.renderkit.RenderKitUtils.<clinit>(RenderKitUtils.java:155)
at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:468)
at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3729)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4187)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:809)
at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:698)
at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:472)
at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1122)
at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:310)
at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1021)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
at org.apache.catalina.core.StandardService.start(StandardService.java:450)
at org.apache.catalina.core.StandardServer.start(StandardServer.java:709)
at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
2008-4-28 14:12:46 org.apache.catalina.core.StandardContext listenerStop
严重: Exception sending context destroyed event to listener instance of class com.sun.faces.config.ConfigureListener
java.lang.NoClassDefFoundError: edu/emory/mathcs/backport/java/util/concurrent/ConcurrentMap
at com.sun.faces.config.ConfigureListener.contextDestroyed(ConfigureListener.java:498)
at org.apache.catalina.core.StandardContext.listenerStop(StandardContext.java:3770)
at org.apache.catalina.core.StandardContext.stop(StandardContext.java:4339)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4217)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:809)
at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:698)
at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:472)
at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1122)
at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:310)
at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1021)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
at org.apache.catalina.core.StandardService.start(StandardService.java:450)
at org.apache.catalina.core.StandardServer.start(StandardServer.java:709)
at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)


这是什么包呀?
控制台信息:

信息: WARNING: Security role name user used in an <auth-constraint> without being defined in a <security-role>
2008-4-28 14:12:45 com.sun.faces.config.ConfigureListener contextInitialized
信息: Initializing Sun's JavaServer Faces implementation (1.2_03-b09-FCS) for context 'null'


已解决。

我的也是这个问题 监听器什么的 好像是jsf里的一个包
谁给我说说怎么解决啊 头都大了
89 楼 linliangyi2007 2009-01-13  
yssen 写道
我想移植到TOMCAT上,主要我一直都用的TOMCAT、WEBLOGIC;我想用JBPM的源代码,但是始终没有看到效果,所以才想把应用移植过来看看效果。不过确实没办法了,对JSF和HIBERNATE都不熟悉,还是自己再看看其他的源码吧。主要最近对这一块的内容很有兴趣。在这里谢谢楼主大大了。


对jsf不熟,还能凑活的跑。毕竟jBPM在应用过程中,可以不用服务端部署的。
不过如果不熟悉Hibernate,出了问题,确实很麻烦咯
88 楼 yssen 2009-01-13  
我想移植到TOMCAT上,主要我一直都用的TOMCAT、WEBLOGIC;我想用JBPM的源代码,但是始终没有看到效果,所以才想把应用移植过来看看效果。不过确实没办法了,对JSF和HIBERNATE都不熟悉,还是自己再看看其他的源码吧。主要最近对这一块的内容很有兴趣。在这里谢谢楼主大大了。
87 楼 kjj 2009-01-13  
看来移植的问题还是多多,还是老老实实用jboss 算啦,为什么各位仁兄执意要吧jbpm移植到tomcat上呢,有多少用处呢!
86 楼 yssen 2009-01-13  
郁闷了 我的应用原来用的3.2.3 我把应用拷贝出来 然后吧3.2.2放进去 出现的监听问题,我现在吧3.2.2拷贝出去后,把3.2.3复制回去 依然出现这个问题。。。怎么回事啊!!!!!!
85 楼 linliangyi2007 2009-01-09  
yssen 写道
貌似是tomcat安全域的问题,但是我在tomcat-user.xml里面加入了
<tomcat-users>
  <role rolename="user"/>
  <user username="user" password="" roles="user"/>
</tomcat-users>
上面的问题依然出现。。。


应该不是这个问题,这个只是warning,问题出在listenerStart ,应该是ContextInitail listener出错了

引用
严重: Skipped installing application listeners due to previous error(s)
2009-1-9 15:15:06 org.apache.catalina.core.StandardContext start
严重: Error listenerStart
84 楼 yssen 2009-01-09  
貌似是tomcat安全域的问题,但是我在tomcat-user.xml里面加入了
<tomcat-users>
  <role rolename="user"/>
  <user username="user" password="" roles="user"/>
</tomcat-users>
上面的问题依然出现。。。
83 楼 linliangyi2007 2009-01-09  
yssen 写道
才看到我开始那个是3.2.3 我换成3.2.2 现在出现如下问题:
2009-1-9 15:15:05 org.apache.catalina.startup.ContextConfig validateSecurityRoles
信息: WARNING: Security role name user used in an <auth-constraint> without being defined in a <security-role>
2009-1-9 15:15:06 org.apache.catalina.core.StandardContext listenerStart
严重: Skipped installing application listeners due to previous error(s)
2009-1-9 15:15:06 org.apache.catalina.core.StandardContext start
严重: Error listenerStart
2009-1-9 15:15:06 org.apache.catalina.core.StandardContext start
严重: Context startup failed due to previous errors


应用上下文部署错误,服务没有起来哦
82 楼 yssen 2009-01-09  
才看到我开始那个是3.2.3 我换成3.2.2 现在出现如下问题:
2009-1-9 15:15:05 org.apache.catalina.startup.ContextConfig validateSecurityRoles
信息: WARNING: Security role name user used in an <auth-constraint> without being defined in a <security-role>
2009-1-9 15:15:06 org.apache.catalina.core.StandardContext listenerStart
严重: Skipped installing application listeners due to previous error(s)
2009-1-9 15:15:06 org.apache.catalina.core.StandardContext start
严重: Error listenerStart
2009-1-9 15:15:06 org.apache.catalina.core.StandardContext start
严重: Context startup failed due to previous errors
81 楼 linliangyi2007 2009-01-09  
yssen 写道
我加的jsf的包 包括commons-beanutils.jar、commons-collections.jar、commons-digester.jar、jsf-api.jar、jsf-impl.jar、jstl.jar、standard.jar这7个包


你确定你的版本是3.2的嘛,不应该出现找不到文件这样的问题啊,这种问题都还没到jBPM运行的层面哦。
老实说,我对jsf一点不熟,我的jBPM使用也不牵涉jsf哒
80 楼 yssen 2009-01-09  
我加的jsf的包 包括commons-beanutils.jar、commons-collections.jar、commons-digester.jar、jsf-api.jar、jsf-impl.jar、jstl.jar、standard.jar这7个包

相关推荐

    jBPM开发资料 jBPM-JPDL v3.2环境部署——发布到Tomcat + MySQL

    相当不错的资料 jBPM-JPDL v3.2环境部署——发布到Tomcat + MySQL

    jbpm-jpdl-suite-3.2.3安装配置.doc

    - 将jbpm-jpdl-suite-3.2.3中的war文件部署到Tomcat的webapps目录下,Tomcat会自动将其展开并启动服务。 5. **测试验证**: - 启动Tomcat服务器,访问jbpm的Web应用程序,确保可以正常加载页面。 - 创建并运行...

    JPBM实战经验以及相关参考文档

    在安装配置方面,"jBPM-jPDL学习笔记—框架设计简介.doc"和"jBPM-JPDL v3.2环境部署——发布到Tomcat + MySQL.doc"将是你的重要参考资料。这两个文档详细介绍了如何搭建jBPM开发环境,包括下载和安装jBPM工具,配置...

    jBPM-jPDL学习笔记

    对于部署,可以将jBPM集成到像Tomcat这样的应用服务器中,并配置与MySQL数据库的连接,以便存储和管理流程实例的数据。 2、框架设计简介: jBPM的设计旨在提供一个完整的业务流程生命周期管理解决方案,包括建模、...

    jbpm开发(eclipse3+myeclipse6+mysql5+tomcat6 )

    ### jBPM 开发环境配置与Struts 1.x集成应用详解 #### 一、环境配置 本章节主要介绍如何配置jBPM开发环境。所使用的工具包括Eclipse 3、MyEclipse 6、MySQL 5以及Tomcat 6等。 **1. 下载jBPM开发包** 首先,从...

    jBPM工作流应用

    关键字:jbpm工作流strutsweb应用一、环境配置基础环境是eclipse3+myeclipse6+mysql5+tomcat6。首先从网站上下载jBPM开发包(jbpm-jpdl-suite-3.2.3.zip),据说现在jBPM3已经升到3.2.6了,而且据说已经推出了jBPM4了...

    JBPM企业流程模块开发

    本文档将详细介绍如何在Eclipse环境中安装配置JBPM及相关组件,包括JPDL(Job Processing Definition Language)安装、Tomcat服务器配置、MyEclipse中JPDL-Designer插件的安装与使用、数据库连接配置以及MySQL数据库...

    jBPM 4.2 HelloWorld实例

    - 将编写的流程定义文件部署到Tomcat的`webapps/jbpm`目录下。 - 启动Tomcat服务器,通过浏览器访问`http://localhost:8080/jbpm`,登录后可以找到并启动之前定义的HelloWorld流程。 通过以上步骤,我们不仅完成了...

    jpbm jar包和资料

    - **jbpm集成**:jbpm可以与各种Java EE应用服务器(如JBoss、Tomcat)以及数据库(如MySQL、Oracle)集成,提供持久化服务,确保流程实例在服务器重启后仍能继续执行。 - **jbpm的可视化工具**:jbpm提供了一套...

    Java实现工作流所需jar包

    部署这个war文件到应用服务器(如Tomcat或JBOSS),可以提供服务端接口供客户端调用,进行工作流的创建、启动、查询和管理。它还包含了对数据库的访问层,用于存储工作流实例、任务、事件等信息。 2. **jbpm-gwt-...

    jbpm学习笔记.docx

    - 配置Signavio需要将war包发布到Tomcat服务器,并修改web.xml以设定文件保存路径。 - 访问Signavio的URL通常是`http://localhost:8080/jbpmeditor/p/explorer`,但需注意,它使用filter处理用户访问,而不是传统...

    jbpm开发实例详解

    为了存储jbpm运行所需的数据,你需要在MySQL数据库中创建一个名为jbpmdb的数据库,并运行jbpm.mysql.create.sql脚本来创建所需的表结构。此外,还需要创建一个表来存储业务数据,例如请假申请表(ask_for_leave),...

    Jbpm4.4+hibernate3.5.4+spring3.0.4+struts2.1.8整合

    开发环境通常选择Tomcat作为应用服务器,MySQL作为数据库,Java JDK 6作为开发环境。在整合过程中,需要配置数据库连接,JBPM需要通过Hibernate与数据库交互,因此需要在Hibernate的配置文件中指定数据库连接参数,...

    java开源项目-使用Java开源工作流jBPM开发一个简单的.doc

    - **配置数据源**:在jBPMDemo的应用上下文中配置数据源,以连接到MySQL数据库。 4. **流程设计** - **jPDL**:jBPM支持用jPDL(Java Process Definition Language)来定义工作流,这是一个XML格式的语言,用于...

    jBPM 帮助文档,帮助文档

    对于希望将jBPM部署在Tomcat服务器上的用户,需要按照官方提供的指导进行操作,例如添加jBPM相关的jar文件到Tomcat的lib目录等。 **2.3 JBoss部署** 对于希望将jBPM部署在JBoss服务器上的用户,也需要按照官方提供...

Global site tag (gtag.js) - Google Analytics