修改现有的 JBPM 架构
我们可以修改现有的 JBPM 模式或向该模式添加一些额外的故事吗?
Can we modify Existing JBPM Schema or add some extra tales to the schema.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们可以修改现有的 JBPM 模式或向该模式添加一些额外的故事吗?
Can we modify Existing JBPM Schema or add some extra tales to the schema.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
是的。只要添加额外的列或额外的表,它就可以正常工作。如果您想在实体上使用其他属性,则应该将它们添加为流程实例属性,以便正确保留它们并可以在运行时从流程实例上下文访问它们。
Yes. As long as you add additional columns or additional tables, it will be working fine. If you would like to use additional properties on entites, you should add them as process instance attributes, so they get persisted correctely and can be accessed from the process instance context at runtime.
你,你可以,没有任何麻烦。
但是,如果您想向 JBPM 实体添加其他属性,最好创建您自己的实体,并使用
@OneToOne
来创建 JBPM 实体。另一种选择是使用 hibernate 继承和
TABLE_PER_CLASS
并扩展您想要的 JBPM 实体。You, you can, without any troubles.
If you want, however, to add additional properties to JBPM entities, it is preferable to create your own entities, with
@OneToOne
to the JBPM ones.Another option is to use hibernate inheritance with
TABLE_PER_CLASS
and extend the JBPM entity you want.