流动如何自定义并集成自己的许可系统?
我的应用程序现在有自己的一套许可系统。它是根据用户组和用户以及角色实现的。现在,我想整合可流动。我不想有两套权限。我想知道您是否有集成方案。
My application now has its own set of permission system. It is implemented based on user groups and users as well as roles. Now I want to integrate flowable. I don't want to have two sets of permissions. I wonder if you have an integrated scheme.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您的使用方式。如果您使用Java API,通常没有权限处理,并且在调用API之前可以完成您的权限检查。默认情况下,REST API仅检查身份验证而不是授权,您可以通过Spring Security覆盖它。
也可以 iDmidentityService 接口的实现,nofollow noreferrer“>自定义了流动开源的身份管理。
对于企业,提供可流动的工作的方式“ nofollow noreferrer”>自定义身份服务在文档中描述。
This depends on how you are using Flowable. In case you are using the Java APIs there is typically no permission handling and your permission checks can be done before you call the API. The REST APIs are by default only checking authentication and not authorization, you can overwrite that with Spring Security.
It is also possible to customize the identity management of Flowable Open Source by adding an implementation of the
IdmIdentityService
interface.For the enterprise offering Flowable Work the way of customizing the identity service is described in the documentation.