JBPM发布不到数据库

frank0 2009-11-12

运行了几个JBPM例子,发现每次发布的流程,在tomcat重新启动了以后,都会消失。十分奇怪,后来发现jbpm.hibernate.cfg.xml

中:hibernate.hbm2ddl.auto被设置成了:“create-drop”;改成“validate”就好了。

validate               加载hibernate时,验证创建数据库表结构

create每次加载hibernate,重新创建数据库表结构,这就是导致数据库表数据丢失的原因。

create-drop加载hibernate时创建,退出是删除表结构

update加载hibernate自动更新数据库结构

在本机开发调试初始化数据的时候可以选择create、update等。

hibernate.hbm2ddl.auto Automatically validate or export schema DDL to the database when the SessionFactory is created. With create-drop, the database schema will be dropped when the SessionFactory is closed explicitly. eg. validate | update | create | create-drop

其实这个参数的作用主要用于:自动创建|更新|验证数据库表结构。如果不是此方面的需求建议setvalue="none".

相关推荐