Activiti 数据库表自动生成策略

Activiti 引擎启动时默认会检测数据库版本与程序版本是否相符,不相符就会抛出异常停止引擎的初始化。
这一策略可以通过引擎的初始化配置参数databaseSchemaUpdate来控制,
如下图的spring创建流程引擎的配置文件:

<bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">
    <property name="dataSource" ref="dataSource" />
    <property name="transactionManager" ref="TransactionManager" />
    
    <property name="databaseSchemaUpdate" value="true" />

    <property name="jobExecutorActivate" value="false"/>
    <property name="history" value="full"/>
    <property name="processDefinitionCacheLimit" value="10"/>
    <property name="databaseSchema" value="ITHOME"/>

bean>

作者:itmyhome

你可能感兴趣的:(Activiti)