03-28-2012 06:50 PM
03-29-2012 03:56 AM
04-26-2012 04:03 AM
04-26-2012 07:04 AM
Hi,
I experienced the same issue.
When Activiti Starts, It reloads running processed and starts remaining async tasks. 1 times on 3, It hangs. No explanations, no messages.
Any solutions ?
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${jdbc.driver}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
</bean>
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitManager">
<bean class="org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager"
p:defaultDataSource-ref="dataSource"/>
</property>
<property name="jpaProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="showSql" value="false"/>
</bean>
</property>
</bean>
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory"/>
</bean>
<bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">
<property name="databaseType" value="oracle" />
<property name="dataSource" ref="dataSource" />
<property name="transactionManager" ref="transactionManager" />
<property name="databaseSchemaUpdate" value="true" />
<property name="jobExecutorActivate" value="true" />
<property name="history" value="activity" />
<property name="idGenerator">
<bean class="org.activiti.engine.impl.persistence.StrongUuidGenerator" />
</property>
<property name="idBlockSize" value="2000" />
</bean>
05-04-2012 01:30 PM
05-07-2012 04:03 AM
03-25-2013 11:19 AM
<bean id="processEngineConfiguration" class="org.activiti.engine.impl.cfg.JtaProcessEngineConfiguration">
…
<property name="jobExecutorActivate" value="true" />
<property name="jobExecutor">
<bean class="org.activiti.engine.impl.jobexecutor.DefaultJobExecutor">
<property name="corePoolSize" value="1"/>
<property name="maxPoolSize" value="1"/>
</bean>
</property>
…
pool-1-thread-1- There are no further traces from the JobExecutor.
pool-1-thread-2
pool-1-thread-3
pool-1-thread-4
pool-1-thread-5
03-25-2013 12:41 PM
03-26-2013 10:23 AM
08-14-2013 11:21 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.