Guest User

activit-cfg

a guest
Jul 10th, 2014
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.03 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3.       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.       xsi:schemaLocation="http://www.springframework.org/schema/beans   http://www.springframework.org/schema/beans/spring-beans.xsd">
  5.  
  6.   <bean id="processEngineConfiguration" class="org.activiti.engine.impl.cfg.StandaloneProcessEngineConfiguration" >
  7.     <!-- Database configurations -->
  8.     <property name="databaseType" value="h2" />
  9.     <property name="jdbcUrl" value="jdbc:h2:tcp://localhost/activiti" />
  10.     <property name="jdbcDriver" value="org.h2.Driver" />
  11.     <property name="jdbcUsername" value="sa" />
  12.     <property name="jdbcPassword" value="" />
  13.  
  14.     <property name="mailServerPort" value="1025"/>
  15.    
  16.     <property name="jobExecutorActivate" value="false" />
  17.    
  18.     <property name="customPostDeployers">
  19.       <list>
  20.         <bean class="org.activiti.engine.impl.rules.RulesDeployer" />
  21.       </list>
  22.     </property>
  23.    
  24.   </bean>
  25.  
  26. </beans>
Advertisement
Add Comment
Please, Sign In to add comment