我正在尝试使用 H2 内存数据库在Tomcat-7中通过Activiti Engine部署我的BPMN2.0工作流并获取以下错误:
DEV 10:27:45.258 [localhost-startStop-1] INFO o.a.e.i.bpmn.deployer.BpmnDeployer - Processing resource com/my/diagram/MyLeaveProcess.bpmn
DEV 10:27:49.554 [localhost-startStop-1] ERROR o.a.e.i.interceptor.CommandContext - Error while closing command context
org.apache.ibatis.exceptions.PersistenceException:
### Error updating database. Cause: org.h2.jdbc.JdbcSQLException: Error while creating file null.lobs.db [90062-101]
### The error may involve org.activiti.engine.impl.persistence.entity.ResourceEntity.insertResource-Inline
### The error occurred while setting parameters
### SQL: insert into ACT_GE_BYTEARRAY(ID_, REV_, NAME_, BYTES_, DEPLOYMENT_ID_, GENERATED_) values (?, 1, ?, ?, ?, ?)
### Cause: org.h2.jdbc.JdbcSQLException: Error while creating file null.lobs.db [90062-101]
at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:23) ~[mybatis-3.1.1.jar:3.1.1]
如果我使用UnitTest,相同的工作流程正常工作。
答案 0 :(得分:1)
我建议升级到更新版本的H2。即使这不能解决问题,您至少会得到更好的错误信息。
H2的内部版本号是错误代码的一部分,在您的情况下为[90062-101]。这意味着您使用的是#101,它来自2009年。