activiti.cfg.xml 1.0 KB

123456789101112131415161718192021
  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. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:tx="http://www.springframework.org/schema/tx"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/contex
  9. http://www.springframework.org/schema/context/spring-context.xsd
  10. http://www.springframework.org/schema/tx
  11. http://www.springframework.org/schema/tx/spring-tx.xsd">
  12. <bean id="processEngineConfiguration" class="org.activiti.engine.impl.cfg.StandaloneProcessEngineConfiguration">
  13. <property name="jdbcDriver" value="com.mysql.jdbc.Driver"/>
  14. <property name="jdbcUrl" value="jdbc:mysql:///activiti"/>
  15. <property name="jdbcUsername" value="root"/>
  16. <property name="jdbcPassword" value="root"/>
  17. <property name="databaseSchemaUpdate" value="true"/>
  18. </bean>
  19. </beans>