首页 > 其他 > 详细

j2ee之工作流引擎的activiti.cfg.xml配置文件(简单)

时间:2017-10-07 15:48:06      阅读:436      评论:0      收藏:0      [点我收藏+]

<?xml version="1.0"?>

-<beans 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-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xmlns="http://www.springframework.org/schema/beans">


-<bean class=" org.activiti.engine.impl.cfg.StandaloneProcessEngineConfiguration" id="processEngineConfiguration">

<!-- 配置数据库连接 -->


<property value="com.mysql.jdbc.Driver" name="jdbcDriver"/>

<property value="jdbc:mysql://localhost:3306/activitiDB1?createDatabaseIfNotExist=true& useUnicode=true&characterEncoding=utf8" name="jdbcUrl"/>

<property value="root" name="jdbcUsername"/>

<property value="1234" name="jdbcPassword"/>

<!-- 建表策略 没有表,自动创建-->


<property value="true" name="databaseSchemaUpdate"/>

</bean>

</beans>

j2ee之工作流引擎的activiti.cfg.xml配置文件(简单)

原文:http://www.cnblogs.com/ShaoXin/p/7634691.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!