JBPM发布不到数据库
运行了几个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".
相关推荐
whileinsist 2017-09-08
MayMatrix 2017-09-08
xnuzfm 2014-03-11
spprogrammer 2013-12-18
Gin工作室 2013-11-13
Gexrior 2012-08-25
新开源牛海龙 2012-02-18
tianhennan 2011-07-22
MayMatrix 2017-01-05
特 2016-10-21
HEERY 2013-06-29
什么什么高手 2013-02-27
易鲸捷大数据库 2013-01-05
bianruifeng 2012-08-27
CherrylinORC 2012-07-31
园搬家测试账号 2011-12-09
特 2011-10-12