如果我想按组限制对文件的访问,是否应该使用 ACL?如果是这样——什么是好的 Java 库?
不太确定我的说法是否正确,所以我想知道 ACL 是否是正确的选择。
Not too sure if I'm barking up the right tree, so I'm wondering if ACLs are the way to go.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,文件系统访问的访问控制列表(ACL)高度依赖于操作系统,所以我真的怀疑是否有一个 Java 库可以实现这一点。
另一方面,Java 直接提供 ACL (
java.security.Acl
),因此,如果您有针对不同用户的应用程序,则可以使用该 ACL 来限制对范围内的资源的访问 应用程序(不会阻止用户使用其在操作系统上的用户权限更改文件系统上的文件)。As far as I know, Access Control Lists (ACLs) for file system access highly depend on the the operating system, so I really doubt there's a Java library for that.
On the other hand, Java offers ACL directly (
java.security.Acl
), so if you have an application for different users, you can use that ACL to restrict access to ressource within the application (which doesn't prevent a user from changing a file on the file system with his user permissions on the operating system).看看 Spring Security 是否可以帮助您。
See if Spring Security can help you.