Spring基于角色的授权VS ACL?
我只是想知道在 Spring Security 3 中使用 ACL 和 spring 基于角色的授权 之间的区别?
i just want to know the difference between using ACL and spring role-based authorization in spring security 3 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ACL 是为特定实体定义的权限。基于角色的授权是全局权限。
例如,使用 ACL,您可以定义特定用户可以修改实体 X(例如文件),但不能修改其他实体。
如果没有 ACL,您只能定义用户可以修改所有实体(特定类型)或不能修改任何实体。
因此 ACL 支持实体相关的细粒度权限。
ACL are privileges defined for an specific entity. And role based authorization are global privileges.
For example, with ACLs you can define that a specific user can modifiy a entity X (for example a file) but not an other entity.
Without ACLs you can only define that a user can modify all or none entity (of a specific type).
So ACLs support entity related fine grained privileges.