03-18-2014 06:39 PM
<property name="mailServerHost" value="192.168.1.10" />
<property name="mailServerPort" value="26" />
<bean id="processEngine" class="org.activiti.spring.ProcessEngineFactoryBean" destroy-method="destroy">
<property name="processEngineConfiguration" ref="processEngineConfiguration" />
<property name="mailServerPort" value="26"/>
<property name="mailServerHost" value="192.168.1.10"/>
</bean>
03-19-2014 03:48 AM
<bean id="processEngineConfiguration"
class="org.activiti.engine.impl.cfg.StandaloneProcessEngineConfiguration">
<property name="jdbcUrl" value="jdbc:h2:mem:activiti;DB_CLOSE_DELAY=1000" />
<property name="jdbcDriver" value="org.h2.Driver" />
<property name="jdbcUsername" value="sa" />
<property name="jdbcPassword" value="" />
<!– Database configurations –>
<property name="databaseSchemaUpdate" value="drop-create" />
<!– job executor configurations –>
<property name="jobExecutorActivate" value="false" />
<!– mail server configurations –>
<property name="mailServerPort" value="5025" />
<property name="history" value="full" />
</bean>
processEngineConfiguration
bean?03-19-2014 03:17 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.