22 lines
952 B
XML
22 lines
952 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
|
|
|
|
<bean id="processEngineConfiguration" class="org.camunda.bpm.engine.impl.cfg.StandaloneInMemProcessEngineConfiguration">
|
|
|
|
<property name="jdbcUrl" value="jdbc:h2:mem:camunda;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="true" />
|
|
|
|
<!-- job executor configurations -->
|
|
<property name="jobExecutorActivate" value="false" />
|
|
|
|
<property name="history" value="full" />
|
|
</bean>
|
|
</beans> |