错误信息:
org.apache.ibatis.exceptions.PersistenceException:
### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table
'energy.act_procdef_info' doesn't exist
### The error may exist in org/activiti/db/mapping/entity/ProcessDefinitionInfo.xml
### The error may involve
org.activiti.engine.impl.persistence.entity.ProcessDefinitionInfoEntity.selectProcessDefinitionInfoByProce
ssDefinitionId-Inline
### The error occurred while setting parameters
### SQL: select * from ACT_PROCDEF_INFO where PROC_DEF_ID_ = ?
### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'energy.act_procdef_info'
doesn't exist
...
错误原因:
开始Activiti版本是5.18,后来用的版本是Activiti ~5.22,删除流程定义的时候报错。
表ACT_PROCDEF_INFO (流程定义信息表)在Activiti5.20版本之前没有这张表,在之后的版本中加入了该表,库表由原来的24张 变成了25张。
错误解决:
在activiti.cfg.xml文件中添加如下配置
<!-- 设置建表策略,如果没有表,自动创建表 ACT为大写-->
<property name="databaseSchema" value="ACT"/>