j2ee之工作流引擎的activiti.cfg.xml配置文件(简单)
Posted 情似雨餘黏地絮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了j2ee之工作流引擎的activiti.cfg.xml配置文件(简单)相关的知识,希望对你有一定的参考价值。
<?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配置文件(简单)的主要内容,如果未能解决你的问题,请参考以下文章