Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  4.  
  5. <bean id="processEngineConfiguration" class="org.flowable.engine.impl.cfg.StandaloneProcessEngineConfiguration">
  6.  
  7. <property name="jdbcUrl" value="jdbc:h2:mem:flowable;DB_CLOSE_DELAY=1000" />
  8. <property name="jdbcDriver" value="org.h2.Driver" />
  9. <property name="jdbcUsername" value="sa" />
  10. <property name="jdbcPassword" value="" />
  11.  
  12. <property name="databaseSchemaUpdate" value="true" />
  13.  
  14.  
  15. </bean>
  16.  
  17. </beans>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement