Jbpm遇到不能 could not delete问题
org.hibernate.exception.ConstraintViolationException: could not delete: [org.jbpm.pvm.internal.model.ExecutionImpl#10001] at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:94)
百度
hibernate方言有问题
org.hibernate.dialect.MySQLDialect
把hibernate方言 的配置改成以下
org.hibernate.dialect.MySQLInnoDBDialect
解释:
1,mysql默认存储引擎为InnoDB,需创建新表(表名不存在),数据库方言只能选择MySQLDialect;
2,mysql默认存储引擎为InnoDB,需更改表结构(表名存在),数据库方言三者皆可选(建议选择MySQLInnoDBDialect);