驚歎JBPM的更新速度
項目要使用工作流引擎
談需求時JBPM 4.0還是beta版,現在我們需求談好,JBPM 4.0也已經出到GA版
JBPM 4與3的差別相當大......,看來JBPM自己已經拋棄了3,我們項目也沒必要猶豫了,選4吧~
下載地址:
http://downloads.sourceforge.net/project/jbpm/a%29%20jBPM%204/jbpm-4.0/jbpm-4.0.zip?use_mirror=nchc
1:JBPM 4 DB 裡 居然沒有 Sql server ,難道不支持Sqlserver。
因為JBPM 4使用Hibernate,不支持Sqlserver可能性不大,所以自己寫相應的create.sql drop.sql 及 hibernate配置文件。
測試可以通過。
但還是遇到些許問題..
A:org.hibernate.exception.ConstraintViolationException: could not insert: [org.jbpm.pvm.internal.history.model.HistoryProcessInstanceImpl]
Caused by: java.sql.SQLException: 當 IDENTITY_INSERT 設置為 OFF 時,不能為表 'JBPM4_HIST_PROCINST' 中的標識列插入顯式值。
JBPM4_HIST_PROCINST : DBID_ bigint not null IDENTITY, 改為 DBID_ bigint not null
經查系改Sql時沒看仔細,該表非IDENTITY id。
B:org.hibernate.exception.ConstraintViolationException: could not insert: [org.jbpm.pvm.internal.model.ExecutionImpl]
Caused by: java.sql.SQLException: 違反了 UNIQUE KEY 約束 'UQ__JBPM4_EXECUTION__7D8391DF'。不能在對象 'dbo.JBPM4_EXECUTION' 中插入重復鍵。
ID_ ASC
Note that SQL Server doesn't allow multiple null values in a column with
a unique constraint (JBPM4_EXECUTION.ID_).
忍痛去掉該約束~
2:待續~