[jbpm-users] [jBPM Users] - JobExecutorThread exception

jbpm_user369 do-not-reply at jboss.com
Tue Sep 15 14:27:18 EDT 2009


Hi,

I am writing an app that uses timers. I am using JPA and Oracle 10g.

The code is this:


  | 
  | HelloWorld hw = new HelloWorld();
  | 		hw.emf = Persistence.createEntityManagerFactory("helloworld");
  | 		EntityManager em = hw.emf.createEntityManager();
  | 		
  | 		JbpmConfig.getJbpmConfiguration().startJobExecutor();
  | 		
  | 		JbpmContext jbpmCtx = hw.fetchJbpmContext();
  | 		try{
  | 			ProcessDefinition pd =
  | 				JbpmConfig.setupProcessDefinition("src\\Dates\\processdefinition.xml");
  | 						
  | 			jbpmCtx.deployProcessDefinition(pd);
  | 						
  | 			
  | 			ProcessInstance instance = new ProcessInstance(pd);
  | 			
  | 			Token t = instance.getRootToken();
  | 			t.signal();
  | 		}
  | 		finally{
  | 			jbpmCtx.close();
  | 		}

The persistence.xml looks like this:


  | 
  | <?xml version="1.0" encoding="UTF-8"?>
  | <persistence xmlns="http://java.sun.com/xml/ns/persistence"
  | 	version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  | 	xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
  | 	<persistence-unit name="helloworld"
  | 		transaction-type="RESOURCE_LOCAL">
  | 
  | 		<provider>org.hibernate.ejb.HibernatePersistence</provider>
  | 						
  | 		<mapping-file>org/jbpm/db/hibernate.queries.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/def/Node.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/node/StartState.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/node/EndState.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/node/ProcessState.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/node/Decision.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/node/Fork.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/node/Join.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/node/MailNode.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/node/State.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/def/ProcessDefinition.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/def/Transition.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/def/Event.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/def/Action.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/def/SuperState.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/def/ExceptionHandler.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/instantiation/Delegation.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/node/TaskNode.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/def/ContextDefinition.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/def/VariableAccess.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/bytes/ByteArray.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/module/def/ModuleDefinition.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/file/def/FileDefinition.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/taskmgmt/def/TaskMgmtDefinition.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/taskmgmt/def/Swimlane.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/taskmgmt/def/Task.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/taskmgmt/def/TaskController.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/scheduler/def/CreateTimerAction.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/scheduler/def/CancelTimerAction.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/exe/Comment.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/exe/ProcessInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/exe/Token.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/exe/RuntimeAction.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/module/exe/ModuleInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/exe/ContextInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/exe/TokenVariableMap.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/exe/VariableInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/exe/variableinstance/ByteArrayInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/exe/variableinstance/DateInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/exe/variableinstance/DoubleInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/exe/variableinstance/HibernateLongInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/exe/variableinstance/HibernateStringInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/exe/variableinstance/LongInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/exe/variableinstance/NullInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/log/VariableCreateLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/log/VariableLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/context/log/VariableUpdateLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/job/Job.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/job/Timer.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/job/ExecuteNodeJob.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/taskmgmt/exe/TaskMgmtInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/taskmgmt/exe/PooledActor.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/taskmgmt/exe/SwimlaneInstance.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/action/Script.hbm.xml</mapping-file>				
  | 		<mapping-file>org/jbpm/graph/log/ProcessInstanceCreateLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/logging/log/MessageLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/logging/log/CompositeLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/log/ActionLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/logging/log/ProcessLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/log/NodeLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/log/SignalLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/log/TransitionLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/taskmgmt/log/TaskAssignLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/graph/log/ProcessStateLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/taskmgmt/log/TaskLog.hbm.xml</mapping-file>
  | 		<mapping-file>org/jbpm/taskmgmt/log/TaskCreateLog.hbm.xml</mapping-file>	
  | 		<!--	<exclude-unlisted-classes/>-->
  |     	
  |     	
  |  		<properties>
  | 		<property name="hibernate.ejb.cfgfile" value="hibernate.cfg.xml"/>
  | 						
  | 		</properties>
  | 
  | 		
  | 
  | 	</persistence-unit>
  | </persistence>

The jbpm.cfg.xml file is the following:

<jbpm-configuration>
  | 
  |   <jbpm-context>
  | 	<service name="persistence">
  | 	    <factory>
  | 	        <bean class="org.jbpm.persistence.db.DbPersistenceServiceFactory">
  | 	            <field name="isTransactionEnabled"><true /></field>
  | 	            <field name="isCurrentSessionEnabled"><false /></field>
  | 	        </bean>
  | 	    </factory>
  | 	</service>
  | 
  | <!--	<service name='persistence' factory='org.jbpm.persistence.db.DbPersistenceServiceFactory' />-->
  | 	
  |     <service name='message' factory='org.jbpm.msg.db.DbMessageServiceFactory' />
  |     <service name='scheduler' factory='org.jbpm.scheduler.db.DbSchedulerServiceFactory' />
  |     <service name="tx" factory="org.jbpm.tx.TxServiceFactory" />
  |     <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.default.modules" value="org/jbpm/graph/def/jbpm.default.modules.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.varmapping' value='org/jbpm/context/exe/jbpm.varmapping.xml' />
  | 
  |   <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.job.executor" class="org.jbpm.job.executor.JobExecutor">
  |     <field name="jbpmConfiguration"><ref bean="jbpmConfiguration" /></field>
  |     <field name="name"><string value="JbpmJobExecutor" /></field>
  |     <field name="nbrOfThreads"><int value="1" /></field>
  |     <field name="idleInterval"><int value="5000" /></field>
  |     <field name="maxIdleInterval"><int value="3600000" /></field>  1 hour 
  |     <field name="historyMaxSize"><int value="20" /></field>
  |     <field name="maxLockTime"><int value="600000" /></field>  10 minutes 
  |     <field name="lockMonitorInterval"><int value="60000" /></field>  1 minute 
  |     <field name="lockBufferTime"><int value="5000" /></field>  5 seconds 
  |   </bean>
  | 
  | </jbpm-configuration>
  | 

The hibernate.cfg.xml:

<?xml version='1.0' encoding='utf-8'?>
  | 
  | <!DOCTYPE hibernate-configuration PUBLIC
  |           "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  |           "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  | 
  | <hibernate-configuration>
  |   <session-factory>
  | 
  | <!-- hibernate dialect -->
  |     <property name="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</property>
  | 
  |     <!-- JDBC connection properties (begin) -->
  |     <property name="hibernate.connection.driver_class">oracle.jdbc.OracleDriver</property>
  |     <property name="hibernate.connection.url">jdbc:oracle:thin:@127.0.0.1:1521:xe</property>
  |     <property name="hibernate.connection.username">JBPM</property>
  |     <property name="hibernate.connection.password">JBPM</property>
  |     <property name="hibernate.show_sql">true</property>
  |     <property name="hibernate.format_sql">true</property>
  | 	<property name="hibernate.hbm2ddl.auto">update</property>
  | 	
  | 	<property name="hibernate.current_session_context_class">org.hibernate.context.ThreadLocalSessionContext</property>
  |      
  | 
  |   </session-factory>
  | </hibernate-configuration>

Finally the processdefinition is:


<?xml version="1.0" encoding="UTF-8"?>
  | 
  | <process-definition  xmlns=""  name="Dates">
  | 
  | 
  | 	<start-state name="start-state1">
  | 		<task>
  | 			<timer 
  | 				duedate="2 seconds"
  | 				repeat="3 seconds">
  | 				<action class="hello.jbpm.ReminderActionHandler"/>
  | 			</timer>
  | 		</task>
  | 		<transition to="task-node1"></transition>
  | 	</start-state>
  | 
  | 
  | 	<task-node name="task-node1">
  | 		<transition to="task-node2"></transition>
  | 	</task-node>
  | 
  | 	<task-node name="task-node2">
  | 		<transition to="task-node3"></transition>
  | 	</task-node>
  | 
  | 	<task-node name="task-node3">
  | 		<transition to="end-state1"></transition>
  | 	</task-node>
  | 
  | 
  | 	<end-state name="end-state1"></end-state>
  | 
  | 
  | </process-definition>

The problem is that when the app runs the JobExecutor thread throws this exception:

5265 [JbpmJobExecutor:141.29.39.58:1] ERROR org.jbpm.job.executor.JobExecutorThread  - exception in job executor thread. waiting 1
  | 0000 milliseconds
  | org.jbpm.JbpmException: couldn't get acquirable jobs
  | 	at org.jbpm.db.JobSession.getFirstAcquirableJob(JobSession.java:43)
  | 	at org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:114)
  | 	at org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:58)
  | Caused by: org.hibernate.MappingException: Named query not known: JobSession.getFirstAcquirableJob
  | 	at org.hibernate.impl.AbstractSessionImpl.getNamedQuery(AbstractSessionImpl.java:93)
  | 	at org.hibernate.impl.SessionImpl.getNamedQuery(SessionImpl.java:1288)
  | 	at org.jbpm.db.JobSession.getFirstAcquirableJob(JobSession.java:35)
  | 	... 2 more
  | 

Why is that? Any ideas? I provide the whole stack trace here:
0 [main] INFO org.hibernate.cfg.annotations.Version - Hibernate Annotations 3.4.0.GA
  | 0 [main] INFO org.hibernate.cfg.Environment - Hibernate 3.3.2.GA
  | 16 [main] INFO org.hibernate.cfg.Environment - hibernate.properties not found
  | 16 [main] INFO org.hibernate.cfg.Environment - Bytecode provider name : javassist
  | 16 [main] INFO org.hibernate.cfg.Environment - using JDK 1.4 java.sql.Timestamp handling
  | 78 [main] INFO org.hibernate.annotations.common.Version - Hibernate Commons Annotations 3.1.0.GA
  | 78 [main] INFO org.hibernate.ejb.Version - Hibernate EntityManager 3.4.0.GA
  | 297 [main] INFO org.hibernate.cfg.Configuration - configuring from resource: hibernate.cfg.xml
  | 297 [main] INFO org.hibernate.cfg.Configuration - Configuration resource: hibernate.cfg.xml
  | 344 [main] INFO org.hibernate.cfg.Configuration - Configured SessionFactory: null
  | 344 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/db/hibernate.queries.hbm.xml
  | 375 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/def/Node.hbm.xml
  | 406 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/node/StartState.hbm.xml
  | 406 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/node/EndState.hbm.xml
  | 422 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/node/ProcessState.hbm.xml
  | 437 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/node/Decision.hbm.xml
  | 437 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/node/Fork.hbm.xml
  | 453 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/node/Join.hbm.xml
  | 453 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/node/MailNode.hbm.xml
  | 453 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/node/State.hbm.xml
  | 469 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/def/ProcessDefinition.hbm.xml
  | 469 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/def/Transition.hbm.xml
  | 484 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/def/Event.hbm.xml
  | 484 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/def/Action.hbm.xml
  | 500 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/def/SuperState.hbm.xml
  | 516 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/def/ExceptionHandler.hbm.xml
  | 516 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/instantiation/Delegation.hbm.xml
  | 531 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/node/TaskNode.hbm.xml
  | 531 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/def/ContextDefinition.hbm.xml
  | 547 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/def/VariableAccess.hbm.xml
  | 547 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/bytes/ByteArray.hbm.xml
  | 547 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/module/def/ModuleDefinition.hbm.xml
  | 562 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/file/def/FileDefinition.hbm.xml
  | 562 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/taskmgmt/def/TaskMgmtDefinition.hbm.xm
  | l
  | 562 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/taskmgmt/def/Swimlane.hbm.xml
  | 578 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/taskmgmt/def/Task.hbm.xml
  | 594 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/taskmgmt/def/TaskController.hbm.xml
  | 594 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/scheduler/def/CreateTimerAction.hbm.xm
  | l
  | 594 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/scheduler/def/CancelTimerAction.hbm.xm
  | l
  | 594 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/exe/Comment.hbm.xml
  | 609 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/exe/ProcessInstance.hbm.xml
  | 609 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/exe/Token.hbm.xml
  | 609 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/exe/RuntimeAction.hbm.xml
  | 625 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/module/exe/ModuleInstance.hbm.xml
  | 625 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/exe/ContextInstance.hbm.xml
  | 641 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/exe/TokenVariableMap.hbm.xml
  | 641 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/exe/VariableInstance.hbm.xml
  | 641 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/exe/variableinstance/ByteArray
  | Instance.hbm.xml
  | 656 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/exe/variableinstance/DateInsta
  | nce.hbm.xml
  | 656 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/exe/variableinstance/DoubleIns
  | tance.hbm.xml
  | 656 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/exe/variableinstance/Hibernate
  | LongInstance.hbm.xml
  | 656 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/exe/variableinstance/Hibernate
  | StringInstance.hbm.xml
  | 687 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/exe/variableinstance/LongInsta
  | nce.hbm.xml
  | 703 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/exe/variableinstance/NullInsta
  | nce.hbm.xml
  | 703 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/exe/variableinstance/StringIns
  | tance.hbm.xml
  | 703 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/log/VariableCreateLog.hbm.xml
  | 719 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/log/VariableLog.hbm.xml
  | 719 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/log/variableinstance/StringUpd
  | ateLog.hbm.xml
  | 719 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/context/log/VariableUpdateLog.hbm.xml
  | 719 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/job/Job.hbm.xml
  | 734 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/job/Timer.hbm.xml
  | 734 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/job/ExecuteNodeJob.hbm.xml
  | 734 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/taskmgmt/exe/TaskMgmtInstance.hbm.xml
  | 750 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml
  | 750 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/taskmgmt/exe/PooledActor.hbm.xml
  | 750 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/taskmgmt/exe/SwimlaneInstance.hbm.xml
  | 766 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/action/Script.hbm.xml
  | 766 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/log/ProcessInstanceCreateLog.hbm
  | .xml
  | 766 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/logging/log/MessageLog.hbm.xml
  | 781 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/logging/log/CompositeLog.hbm.xml
  | 781 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/log/ActionLog.hbm.xml
  | 781 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/logging/log/ProcessLog.hbm.xml
  | 797 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/log/NodeLog.hbm.xml
  | 797 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/log/SignalLog.hbm.xml
  | 797 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/log/TransitionLog.hbm.xml
  | 797 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/taskmgmt/log/TaskAssignLog.hbm.xml
  | 812 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/graph/log/ProcessStateLog.hbm.xml
  | 812 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/taskmgmt/log/TaskLog.hbm.xml
  | 812 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : org/jbpm/taskmgmt/log/TaskCreateLog.hbm.xml
  | 906 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.graph.def.Node -> JBPM_NODE
  | 1000 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.node.StartState -> JBPM_NODE
  | 1000 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.node.EndState -> JBPM_NODE
  | 1000 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.node.ProcessState -> JBPM_NODE
  | 1000 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.node.Decision -> JBPM_NODE
  | 1000 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.node.Decision.decisionConditions -> JBPM_DECISIO
  | NCONDITIONS
  | 1000 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.node.Fork -> JBPM_NODE
  | 1016 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.node.Join -> JBPM_NODE
  | 1016 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.node.MailNode -> JBPM_NODE
  | 1016 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.node.State -> JBPM_NODE
  | 1016 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.graph.def.ProcessDefinition -> JBPM_PROCESSDEFINITION
  | 1016 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.graph.def.Transition -> JBPM_TRANSITION
  | 1016 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.graph.def.Event -> JBPM_EVENT
  | 1016 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.graph.def.Action -> JBPM_ACTION
  | 1016 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.def.SuperState -> JBPM_NODE
  | 1016 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.graph.def.ExceptionHandler -> JBPM_EXCEPTIONHANDLER
  | 1016 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.instantiation.Delegation -> JBPM_DELEGATION
  | 1016 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.node.TaskNode -> JBPM_NODE
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.context.def.VariableAccess -> JBPM_VARIABLEACCESS
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.bytes.ByteArray -> JBPM_BYTEARRAY
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.bytes.ByteArray.byteBlocks -> JBPM_BYTEBLOCK
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.module.def.ModuleDefinition -> JBPM_MODULEDEFINITION
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.file.def.FileDefinition -> JBPM_MODULEDEFINITION
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.taskmgmt.def.TaskMgmtDefinition -> JBPM_MODULEDEFINITION
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.taskmgmt.def.Swimlane -> JBPM_SWIMLANE
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.taskmgmt.def.Task -> JBPM_TASK
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.taskmgmt.def.TaskController -> JBPM_TASKCONTROLLER
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.scheduler.def.CreateTimerAction -> JBPM_ACTION
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.scheduler.def.CancelTimerAction -> JBPM_ACTION
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.graph.exe.Comment -> JBPM_COMMENT
  | 1031 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.graph.exe.ProcessInstance -> JBPM_PROCESSINSTANCE
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.graph.exe.Token -> JBPM_TOKEN
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.graph.exe.RuntimeAction -> JBPM_RUNTIMEACTION
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.module.exe.ModuleInstance -> JBPM_MODULEINSTANCE
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.exe.ContextInstance -> JBPM_MODULEINSTANCE
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.context.exe.TokenVariableMap -> JBPM_TOKENVARIABLEMAP
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.context.exe.VariableInstance -> JBPM_VARIABLEINSTANCE
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.exe.variableinstance.ByteArrayInstance -> JBPM_V
  | ARIABLEINSTANCE
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.exe.variableinstance.DateInstance -> JBPM_VARIAB
  | LEINSTANCE
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.exe.variableinstance.DoubleInstance -> JBPM_VARI
  | ABLEINSTANCE
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateLongInstance -> JB
  | PM_VARIABLEINSTANCE
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateStringInstance -> 
  | JBPM_VARIABLEINSTANCE
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.exe.variableinstance.LongInstance -> JBPM_VARIAB
  | LEINSTANCE
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.exe.variableinstance.NullInstance -> JBPM_VARIAB
  | LEINSTANCE
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.exe.variableinstance.StringInstance -> JBPM_VARI
  | ABLEINSTANCE
  | 1047 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.job.Job -> JBPM_JOB
  | 1062 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.job.Timer -> JBPM_JOB
  | 1062 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.job.ExecuteNodeJob -> JBPM_JOB
  | 1062 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.taskmgmt.exe.TaskMgmtInstance -> JBPM_MODULEINSTANCE
  | 1062 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.taskmgmt.exe.TaskInstance -> JBPM_TASKINSTANCE
  | 1078 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.pooledActors -> JBPM_TASKACT
  | ORPOOL
  | 1078 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.taskmgmt.exe.PooledActor -> JBPM_POOLEDACTOR
  | 1078 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.exe.PooledActor.taskInstances -> JBPM_TASKACT
  | ORPOOL
  | 1078 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.taskmgmt.exe.SwimlaneInstance -> JBPM_SWIMLANEINSTANCE
  | 1078 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.action.Script -> JBPM_ACTION
  | 1078 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: org.jbpm.logging.log.ProcessLog -> JBPM_LOG
  | 1078 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.log.NodeLog -> JBPM_LOG
  | 1078 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.log.SignalLog -> JBPM_LOG
  | 1078 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.log.TransitionLog -> JBPM_LOG
  | 1078 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.log.ProcessStateLog -> JBPM_LOG
  | 1078 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.taskmgmt.log.TaskLog -> JBPM_LOG
  | 1078 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.taskmgmt.log.TaskCreateLog -> JBPM_LOG
  | 1078 [main] INFO org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: hello.Message
  | 1109 [main] INFO org.hibernate.cfg.annotations.EntityBinder - Bind entity hello.Message on table MESSAGES
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.log.ActionLog -> JBPM_LOG
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.def.ContextDefinition -> JBPM_MODULEDEFINITION
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.logging.log.CompositeLog -> JBPM_LOG
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.logging.log.MessageLog -> JBPM_LOG
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.graph.log.ProcessInstanceCreateLog -> JBPM_LOG
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.taskmgmt.log.TaskAssignLog -> JBPM_LOG
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.log.VariableLog -> JBPM_LOG
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.log.VariableCreateLog -> JBPM_LOG
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.log.VariableUpdateLog -> JBPM_LOG
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping subclass: org.jbpm.context.log.variableinstance.StringUpdateLog -> JBPM_LOG
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.Node.events -> JBPM_EVENT
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.Node.exceptionHandlers -> JBPM_EXCEPTIONHAND
  | LER
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.Node.leavingTransitions -> JBPM_TRANSITION
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.Node.arrivingTransitions -> JBPM_TRANSITION
  | 1141 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.node.ProcessState.variableAccesses -> JBPM_VARIA
  | BLEACCESS
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.ProcessDefinition.events -> JBPM_EVENT
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.ProcessDefinition.exceptionHandlers -> JBPM_
  | EXCEPTIONHANDLER
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.ProcessDefinition.nodes -> JBPM_NODE
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.ProcessDefinition.actions -> JBPM_ACTION
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.ProcessDefinition.definitions -> JBPM_MODULE
  | DEFINITION
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.Transition.events -> JBPM_EVENT
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.Transition.exceptionHandlers -> JBPM_EXCEPTI
  | ONHANDLER
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.Event.actions -> JBPM_ACTION
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.SuperState.nodes -> JBPM_NODE
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.def.ExceptionHandler.actions -> JBPM_ACTION
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.node.TaskNode.tasks -> JBPM_TASK
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.file.def.FileDefinition.processFiles -> JBPM_BYTEARRAY
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes -> JBPM_SWIM
  | LANE
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks -> JBPM_TASK
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.def.Swimlane.tasks -> JBPM_TASK
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.def.Task.events -> JBPM_EVENT
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.def.Task.exceptionHandlers -> JBPM_EXCEPTIONH
  | ANDLER
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.def.TaskController.variableAccesses -> JBPM_V
  | ARIABLEACCESS
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.exe.ProcessInstance.runtimeActions -> JBPM_RUNTI
  | MEACTION
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.exe.ProcessInstance.instances -> JBPM_MODULEINST
  | ANCE
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.exe.Token.children -> JBPM_TOKEN
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.exe.Token.comments -> JBPM_COMMENT
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.context.exe.ContextInstance.tokenVariableMaps -> JBPM_
  | TOKENVARIABLEMAP
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.context.exe.TokenVariableMap.variableInstances -> JBPM
  | _VARIABLEINSTANCE
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.swimlaneInstances -> JBP
  | M_SWIMLANEINSTANCE
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.taskInstances -> JBPM_TA
  | SKINSTANCE
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.variableInstances -> JBPM_VA
  | RIABLEINSTANCE
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.comments -> JBPM_COMMENT
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.taskmgmt.exe.SwimlaneInstance.pooledActors -> JBPM_POO
  | LEDACTOR
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.graph.action.Script.variableAccesses -> JBPM_VARIABLEA
  | CCESS
  | 1156 [main] INFO org.hibernate.cfg.HbmBinder - Mapping collection: org.jbpm.logging.log.CompositeLog.children -> JBPM_LOG
  | 1156 [main] INFO org.hibernate.cfg.AnnotationConfiguration - Hibernate Validator not found: ignoring
  | 1203 [main] INFO org.hibernate.cfg.search.HibernateSearchEventListenerRegister - Unable to find org.hibernate.search.event.FullTex
  | tIndexEventListener on the classpath. Hibernate Search is not enabled.
  | 1234 [main] INFO org.hibernate.connection.DriverManagerConnectionProvider - Using Hibernate built-in connection pool (not for prod
  | uction use!)
  | 1234 [main] INFO org.hibernate.connection.DriverManagerConnectionProvider - Hibernate connection pool size: 20
  | 1234 [main] INFO org.hibernate.connection.DriverManagerConnectionProvider - autocommit mode: true
  | 1250 [main] INFO org.hibernate.connection.DriverManagerConnectionProvider - using driver: oracle.jdbc.OracleDriver at URL: jdbc:or
  | acle:thin:@127.0.0.1:1521:xe
  | 1250 [main] INFO org.hibernate.connection.DriverManagerConnectionProvider - connection properties: {user=JBPM, password=****, auto
  | commit=true, release_mode=auto}
  | 1469 [main] INFO org.hibernate.cfg.SettingsFactory - RDBMS: Oracle, version: Oracle Database 10g Express Edition Release 10.2.0.1.
  | 0 - Production
  | 1469 [main] INFO org.hibernate.cfg.SettingsFactory - JDBC driver: Oracle JDBC driver, version: 10.2.0.4.0
  | 1484 [main] INFO org.hibernate.dialect.Dialect - Using dialect: org.hibernate.dialect.Oracle10gDialect
  | 1484 [main] INFO org.hibernate.transaction.TransactionFactoryFactory - Transaction strategy: org.hibernate.transaction.JDBCTransac
  | tionFactory
  | 1500 [main] INFO org.hibernate.transaction.TransactionManagerLookupFactory - No TransactionManagerLookup configured (in JTA enviro
  | nment, use of read-write or transactional second-level cache is not recommended)
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - JDBC batch size: 15
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - JDBC batch updates for versioned data: disabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): disabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Connection release mode: auto
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
  | 1500 [main] INFO org.hibernate.hql.ast.ASTQueryTranslatorFactory - Using ASTQueryTranslatorFactory
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Query language substitutions: {}
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: enabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Second-level cache: enabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Query cache: disabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Echoing all SQL to stdout
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Statistics: disabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo
  | 1500 [main] INFO org.hibernate.cfg.SettingsFactory - Named query checking : enabled
  | 1531 [main] INFO org.hibernate.impl.SessionFactoryImpl - building session factory
  | 2109 [main] INFO org.hibernate.impl.SessionFactoryObjectFactory - Not binding factory to JNDI, no JNDI name configured
  | 2109 [main] INFO org.hibernate.tool.hbm2ddl.SchemaUpdate - Running hbm2ddl schema update
  | 2109 [main] INFO org.hibernate.tool.hbm2ddl.SchemaUpdate - fetching database metadata
  | 2203 [main] INFO org.hibernate.tool.hbm2ddl.SchemaUpdate - updating schema
  | 2297 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_ACTION
  | 2297 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [referencedaction_, ispropagationallowed_, actionexpression_,
  |  eventindex_, exceptionhandler_, isasync_, class, timername_, name_, duedate_, expression_, repeat_, timeraction_, processdefiniti
  | on_, id_, event_, exceptionhandlerindex_, transitionname_, actiondelegation_]
  | 2297 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_action_event, fk_action_expthdl, fk_action_refact, f
  | k_action_procdef, fk_action_actndel, fk_crtetimeract_ta]
  | 2297 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010578]
  | 2312 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_BYTEARRAY
  | 2312 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [filedefinition_, id_, name_]
  | 2312 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_bytearr_fildef]
  | 2312 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010580]
  | 2328 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_BYTEBLOCK
  | 2328 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [index_, processfile_, bytes_]
  | 2328 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_byteblock_file]
  | 2328 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010583]
  | 2328 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_COMMENT
  | 2328 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [taskinstanceindex_, token_, time_, id_, tokenindex_, version
  | _, message_, taskinstance_, actorid_]
  | 2328 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_comment_token, fk_comment_tsk]
  | 2328 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010586]
  | 2422 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_DECISIONCONDITIONS
  | 2422 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [decision_, index_, expression_, transitionname_]
  | 2422 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_deccond_dec]
  | 2422 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010589]
  | 2422 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_DELEGATION
  | 2422 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [configtype_, classname_, processdefinition_, id_, configurat
  | ion_]
  | 2422 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_delegation_prcd]
  | 2422 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010591]
  | 2437 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_EVENT
  | 2437 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [transition_, task_, type_, graphelement_, processdefinition_
  | , node_, id_, eventtype_]
  | 2437 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_event_trans, fk_event_procdef, fk_event_task, fk_eve
  | nt_node]
  | 2437 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010593]
  | 2453 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_EXCEPTIONHANDLER
  | 2453 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [transition_, task_, type_, graphelement_, graphelementindex_
  | , exceptionclassname_, processdefinition_, node_, id_]
  | 2453 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: []
  | 2453 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010595]
  | 2469 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_JOB
  | 2469 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [graphelement_, graphelementtype_, token_, locktime_, lockown
  | er_, action_, version_, name_, duedate_, class_, taskinstance_, retries_, repeat_, processinstance_, node_, issuspended_, id_, exc
  | eption_, transitionname_, isexclusive_]
  | 2469 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_job_prinst, fk_job_action, fk_job_tskinst, fk_job_no
  | de, fk_job_token]
  | 2469 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010599]
  | 2500 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_LOG
  | 2500 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [oldstringvalue_, token_, newdoublevalue_, newstringidclass_,
  |  olddatevalue_, taskactorid_, taskinstance_, newstringvalue_, child_, index_, oldbytearray_, oldlongvalue_, newbytearray_, duratio
  | n_, node_, newdatevalue_, leave_, variableinstance_, newstringidvalue_, exception_, swimlaneinstance_, transition_, oldlongidvalue
  | _, parent_, destinationnode_, taskoldactorid_, action_, newlongidvalue_, class_, sourcenode_, date_, olddoublevalue_, oldstringidc
  | lass_, oldstringidvalue_, enter_, newlongvalue_, id_, newlongidclass_, message_, oldlongidclass_]
  | 2500 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_log_destnode, fk_log_parent, fk_log_sourcenode, fk_l
  | og_node, fk_log_taskinst, fk_log_childtoken, fk_log_varinst, fk_log_newbytes, fk_log_swiminst, fk_log_token, fk_log_oldbytes, fk_l
  | og_action, fk_log_transition]
  | 2500 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010602]
  | 2500 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_MODULEDEFINITION
  | 2500 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [starttask_, processdefinition_, id_, name_, class_]
  | 2500 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_tskdef_start, fk_moddef_procdef]
  | 2500 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010605]
  | 2516 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_MODULEINSTANCE
  | 2516 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [taskmgmtdefinition_, processinstance_, id_, version_, name_,
  |  class_]
  | 2516 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_taskmgtinst_tmd, fk_modinst_prcinst]
  | 2516 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010609]
  | 2531 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_NODE
  | 2531 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [decisionexpression_, decisiondelegation, createtasks_, isasy
  | nc_, superstate_, nodecollectionindex_, action_, subprocname_, name_, class_, endtasks_, parentlockmode_, script_, isasyncexcl_, s
  | ignal_, processdefinition_, id_, description_, subprocessdefinition_]
  | 2531 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_node_superstate, fk_procst_sbprcdef, fk_node_procdef
  | , fk_decision_deleg, fk_node_action, fk_node_script]
  | 2531 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010612]
  | 2547 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_POOLEDACTOR
  | 2547 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [id_, version_, swimlaneinstance_, actorid_]
  | 2547 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_pooledactor_sli]
  | 2547 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010615]
  | 2562 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_PROCESSDEFINITION
  | 2562 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [startstate_, isterminationimplicit_, description_, id_, vers
  | ion_, name_, class_]
  | 2562 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_procdef_strtsta]
  | 2562 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010618]
  | 2578 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_PROCESSINSTANCE
  | 2578 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [key_, processdefinition_, issuspended_, superprocesstoken_, 
  | start_, roottoken_, id_, version_, end_]
  | 2578 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_procin_roottkn, fk_procin_procdef, fk_procin_sproctk
  | n]
  | 2578 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010621]
  | 2578 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_RUNTIMEACTION
  | 2578 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [type_, processinstanceindex_, graphelement_, processinstance
  | _, action_, id_, version_, eventtype_]
  | 2578 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_rtactn_action, fk_rtactn_procinst]
  | 2578 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010624]
  | 2594 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_SWIMLANE
  | 2594 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [taskmgmtdefinition_, actoridexpression_, assignmentdelegatio
  | n_, id_, name_, pooledactorsexpression_]
  | 2594 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_swl_tskmgmtdef, fk_swl_assdel]
  | 2594 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010626]
  | 2609 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_SWIMLANEINSTANCE
  | 2609 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [swimlane_, taskmgmtinstance_, id_, version_, name_, actorid_
  | ]
  | 2609 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_swimlaneinst_tm, fk_swimlaneinst_sl]
  | 2609 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010629]
  | 2625 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_TASK
  | 2625 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [startstate_, isblocking_, actoridexpression_, tasknode_, iss
  | ignalling_, taskcontroller_, name_, condition_, duedate_, priority_, taskmgmtdefinition_, swimlane_, processdefinition_, assignmen
  | tdelegation_, id_, description_, pooledactorsexpression_]
  | 2625 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_task_startst, fk_tsk_tskctrl, fk_task_swimlane, fk_t
  | ask_taskmgtdef, fk_task_assdel, fk_task_tasknode, fk_task_procdef]
  | 2625 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010631]
  | 2641 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_TASKACTORPOOL
  | 2641 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [pooledactor_, taskinstance_]
  | 2641 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_tskactpol_plact, fk_taskactpl_tski]
  | 2641 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010634]
  | 2703 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_TASKCONTROLLER
  | 2703 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [taskcontrollerdelegation_, id_]
  | 2703 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_tskctrl_deleg]
  | 2703 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010636]
  | 2719 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_TASKINSTANCE
  | 2719 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [token_, isblocking_, procinst_, swimlaninstance_, issignalli
  | ng_, version_, name_, duedate_, class_, actorid_, priority_, task_, iscancelled_, isopen_, issuspended_, start_, taskmgmtinstance_
  | , id_, description_, create_, end_]
  | 2719 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_taskinst_tminst, fk_tskins_prcins, fk_taskinst_task,
  |  fk_taskinst_token, fk_taskinst_slinst]
  | 2719 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010640]
  | 2734 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_TOKEN
  | 2734 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [subprocessinstance_, parent_, nextlogindex_, isterminationim
  | plicit_, lock_, nodeenter_, version_, name_, isabletoreactivateparent_, processinstance_, issuspended_, node_, start_, id_, end_]
  | 2734 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_token_procinst, fk_token_parent, fk_token_node, fk_t
  | oken_subpi]
  | 2734 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010643]
  | 2750 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_TOKENVARIABLEMAP
  | 2750 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [token_, id_, contextinstance_, version_]
  | 2750 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_tkvarmap_ctxt, fk_tkvarmap_token]
  | 2750 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010646]
  | 2766 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_TRANSITION
  | 2766 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [processdefinition_, description_, id_, from_, condition_, na
  | me_, fromindex_, to_]
  | 2766 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_trans_procdef, fk_transition_to, fk_transition_from]
  | 2766 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010648]
  | 2781 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_VARIABLEACCESS
  | 2781 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [script_, index_, mappedname_, processstate_, access_, id_, t
  | askcontroller_, variablename_]
  | 2781 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_varacc_tskctrl, fk_varacc_procst, fk_varacc_script]
  | 2781 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010650]
  | 2781 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.JBPM_VARIABLEINSTANCE
  | 2797 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [converter_, token_, version_, name_, taskinstance_, class_, 
  | stringvalue_, doublevalue_, processinstance_, longidclass_, longvalue_, bytearrayvalue_, datevalue_, tokenvariablemap_, stringidcl
  | ass_, id_]
  | 2797 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk_varinst_tkvarmp, fk_varinst_prcinst, fk_varinst_tk, 
  | fk_byteinst_array, fk_var_tskinst]
  | 2797 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010654]
  | 2797 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - table found: JBPM.MESSAGES
  | 2797 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - columns: [message_text, message_id, next_message_id]
  | 2797 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - foreign keys: [fk131af14c3cd7f3ea]
  | 2797 [main] INFO org.hibernate.tool.hbm2ddl.TableMetadata - indexes: [sys_c0010656]
  | 2797 [main] INFO org.hibernate.tool.hbm2ddl.SchemaUpdate - schema update complete
  | 0    [main] DEBUG org.jbpm.JbpmConfiguration  - creating jbpm configuration from resource '/jbpm.cfg.xml'
  | 0    [main] DEBUG org.jbpm.JbpmConfiguration  - loading defaults in jbpm configuration
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'default.jbpm.context'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.hibernate.cfg.xml'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.business.calendar'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.default.modules'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.converter'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.action.types'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.node.types'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.parsers'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.varmapping'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.mail.templates'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.byte.block.size'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.task.instance.factory'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.variable.resolver'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.mail.smtp.host'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.mail.address.resolver'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.mail.from.address'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.job.executor'
  | 15   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpmConfiguration'
  | 15   [main] INFO  org.jbpm.persistence.db.StaleObjectLogConfigurer  - stale object exceptions will be hidden from logging
  | 15   [main] DEBUG org.jbpm.job.executor.JobExecutor  - starting thread group 'JbpmJobExecutor'...
  | 15   [main] DEBUG org.jbpm.job.executor.JobExecutor  - starting new job executor thread 'JbpmJobExecutor:141.29.39.58:1'
  | 15   [JbpmJobExecutor:141.29.39.58:1] DEBUG org.jbpm.job.executor.JobExecutorThread  - acquiring jobs for execution...
  | 31   [JbpmJobExecutor:141.29.39.58:1] DEBUG org.jbpm.configuration.JbpmContextInfo  - creating jbpm context with service factories
  |  '[message, tx, scheduler, authentication, persistence, logging]'
  | 31   [JbpmJobExecutor:141.29.39.58:1] DEBUG org.jbpm.JbpmContext  - creating org.jbpm.JbpmContext at 1a8dfb3
  | 31   [JbpmJobExecutor:141.29.39.58:1] DEBUG org.jbpm.persistence.db.DbPersistenceServiceFactory  - creating persistence service
  | 31   [JbpmJobExecutor:141.29.39.58:1] DEBUG org.jbpm.persistence.db.DbPersistenceServiceFactory  - building hibernate session fact
  | ory
  | 47   [JbpmJobExecutor:141.29.39.58:1] DEBUG org.jbpm.db.hibernate.HibernateHelper  - creating hibernate configuration resource 'hi
  | bernate.cfg.xml'
  | 3141 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.Configuration - configuring from resource: hibernate.cfg.xml
  | 3141 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.Configuration - Configuration resource: hibernate.cfg.xml
  | 3141 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.Configuration - Configured SessionFactory: null
  | 3141 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.connection.DriverManagerConnectionProvider - Using Hibernate built-in con
  | nection pool (not for production use!)
  | 3141 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.connection.DriverManagerConnectionProvider - Hibernate connection pool si
  | ze: 20
  | 3141 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.connection.DriverManagerConnectionProvider - autocommit mode: false
  | 3141 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.connection.DriverManagerConnectionProvider - using driver: oracle.jdbc.Or
  | acleDriver at URL: jdbc:oracle:thin:@127.0.0.1:1521:xe
  | 3141 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.connection.DriverManagerConnectionProvider - connection properties: {user
  | =JBPM, password=****}
  | 47   [main] INFO  org.jbpm.JbpmConfiguration  - using jbpm configuration resource 'jbpm.cfg.xml'
  | 47   [main] DEBUG org.jbpm.JbpmConfiguration  - loading defaults in jbpm configuration
  | 47   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'default.jbpm.context'
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - RDBMS: Oracle, version: Oracle Database 10g Express
  |  Edition Release 10.2.0.1.0 - Production
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - JDBC driver: Oracle JDBC driver, version: 10.2.0.4.
  | 0
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.dialect.Dialect - Using dialect: org.hibernate.dialect.Oracle10gDialect
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.transaction.TransactionFactoryFactory - Using default transaction strateg
  | y (direct JDBC transactions)
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.transaction.TransactionManagerLookupFactory - No TransactionManagerLookup
  |  configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disa
  | bled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - JDBC batch size: 15
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - JDBC batch updates for versioned data: disabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): disabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Connection release mode: auto
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.ast.ASTQueryTra
  | nslatorFactory
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.hql.ast.ASTQueryTranslatorFactory - Using ASTQueryTranslatorFactory
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Query language substitutions: {}
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Second-level cache: enabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Query cache: disabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.impl.NoC
  | achingRegionFactory
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Echoing all SQL to stdout
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Statistics: disabled
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disab
  | led
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.cfg.SettingsFactory - Named query checking : enabled
  | 47   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.hibernate.cfg.xml'
  | 47   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.business.calendar'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.default.modules'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.converter'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.action.types'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.node.types'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.parsers'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.varmapping'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.mail.templates'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.byte.block.size'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.task.instance.factory'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.variable.resolver'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.mail.smtp.host'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.mail.address.resolver'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.mail.from.address'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'jbpm.job.executor'
  | 62   [main] DEBUG org.jbpm.JbpmConfiguration  - loading specific configuration...
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'default.jbpm.context'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.hibernate.cfg.xml'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.default.modules'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.action.types'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.node.types'
  | 62   [main] DEBUG org.jbpm.configuration.ObjectFactoryImpl  - adding object info 'resource.varmapping'
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.impl.SessionFactoryImpl - building session factory
  | 3156 [JbpmJobExecutor:141.29.39.58:1] INFO org.hibernate.impl.SessionFactoryObject

View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4255372#4255372

Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4255372


More information about the jbpm-users mailing list