activiti.cfg.xml 1.2 KB

123456789101112131415
  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" xmlns:context="http://www.springframework.org/schema/context"
  4. xmlns:tx="http://www.springframework.org/schema/tx"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
  6. <bean id="processEngineConfiguration"
  7. class="org.activiti.engine.impl.cfg.StandaloneInMemProcessEngineConfiguration">
  8. <property name="jdbcUrl" value="jdbc:mysql://114.135.61.188:33306/operation_manager?characterEncoding=utf8"></property>
  9. <property name="jdbcDriver" value="com.mysql.jdbc.Driver"></property>
  10. <property name="jdbcUsername" value="root"></property>
  11. <property name="jdbcPassword" value="100Zone@123"></property>
  12. <property name="databaseSchemaUpdate" value="true"></property>
  13. </bean>
  14. </beans>