01-15-2015 03:06 PM
01-16-2015 06:34 AM
01-16-2015 09:49 AM
01-16-2015 09:50 AM
<bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">
<property name="dataSource" ref="workflowDataSource" />
<property name="transactionManager" ref="workflowTransactionManager" />
<property name="history" value="full" />
<property name="databaseSchemaUpdate" value="false" />
<property name="jobExecutorActivate" value="true" />
<property name="asyncExecutorEnabled" value="true" />
<property name="asyncExecutorActivate" value="true" />
<property name="asyncExecutor" ref="asyncExecutor" />
<property name="processEngineName" value="default"></property>
<property name="enableDatabaseEventLogging" value="false" />
<property name="idGenerator">
<bean class="org.activiti.engine.impl.persistence.StrongUuidGenerator" />
</property>
</bean>
<bean id="asyncExecutor" class="org.activiti.engine.impl.asyncexecutor.DefaultAsyncJobExecutor">
<property name="corePoolSize" value="10" />
<!–
Max pool size should not increase than database connection pool. Otherwise, will face exception like all database
connections are use
–>
<property name="maxPoolSize" value="50" />
<property name="keepAliveTime" value="3000" />
<property name="queueSize" value="10" />
<property name="maxTimerJobsPerAcquisition" value="2" />
<property name="maxAsyncJobsDuePerAcquisition" value="2" />
<property name="defaultAsyncJobAcquireWaitTimeInMillis" value="1000" />
<property name="defaultTimerJobAcquireWaitTimeInMillis" value="1000" />
<property name="timerLockTimeInMillis" value="60000" />
<property name="asyncJobLockTimeInMillis" value="60000" />
</bean>
01-16-2015 10:08 AM
01-16-2015 10:13 AM
01-16-2015 10:23 AM
01-19-2015 09:29 AM
01-19-2015 09:31 AM
01-20-2015 12:15 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.