Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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.activiti.engine.impl.cfg.StandaloneProcessEngineConfiguration" >
- <!-- Database configurations -->
- <property name="databaseType" value="h2" />
- <property name="jdbcUrl" value="jdbc:h2:tcp://localhost/activiti" />
- <property name="jdbcDriver" value="org.h2.Driver" />
- <property name="jdbcUsername" value="sa" />
- <property name="jdbcPassword" value="" />
- <property name="mailServerPort" value="1025"/>
- <property name="jobExecutorActivate" value="false" />
- <property name="customPostDeployers">
- <list>
- <bean class="org.activiti.engine.impl.rules.RulesDeployer" />
- </list>
- </property>
- </bean>
- </beans>
Advertisement
Add Comment
Please, Sign In to add comment