Apache Sling 中有工作流程功能吗
以前有人用 apache Sling 实现过工作流程吗?如何轻松地将第三方工作流引擎(例如 activiti)与 Apache Sling 集成?
Any body implemented workflow with apache Sling before? How easily to integrate third party workflow engine such as activiti with Apache Sling?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道 activiti,但是如果你可以将它打包在 OSGi 包中,那么应该可以在 Sling 中使用它。
JCR 和 Sling 观察机制对于与工作流系统集成非常有帮助,因为当 JCR 存储库中的内容被修改时,它们可以以一种非常解耦的基于事件的方式回调到您的代码。
I don't know activiti but if you can package it in an OSGi bundle, it should be possible to use it in Sling.
The JCR and Sling observation mechanisms are very helpful in integrating with workflow systems, as they can call back into your code when content is modified in the JCR repository, in a very decoupled event-based way.