jbpm3创建子流程报错的有关问题
jbpm3创建子流程报错的问题
问题现象:
2010-01-06 08:50:06:ERROR 流水号(00006500) bank.dealwith.NetServerThread3 - 流程处理失败:org.jbpm.graph.def.DelegationException: instance not of expected entity type: org.jbpm.context.exe.variableinstance.UnpersistableInstance is not a: org.jbpm.context.exe.VariableInstance
解决方法:
在context中保存流程变量的时候,该流程变量必须可序列化。
例如 context.setVariable("enumManager", enumManager);
那么这个enumManager必须implements Serializable。
问题现象:
2010-01-06 08:50:06:ERROR 流水号(00006500) bank.dealwith.NetServerThread3 - 流程处理失败:org.jbpm.graph.def.DelegationException: instance not of expected entity type: org.jbpm.context.exe.variableinstance.UnpersistableInstance is not a: org.jbpm.context.exe.VariableInstance
解决方法:
在context中保存流程变量的时候,该流程变量必须可序列化。
例如 context.setVariable("enumManager", enumManager);
那么这个enumManager必须implements Serializable。