Good ACL implementation in Java

Posted by yonconf on Stack Overflow See other posts from Stack Overflow or by yonconf
Published on 2010-05-16T12:06:48Z Indexed on 2010/05/16 12:10 UTC
Read the original article Hit count: 153

Filed under:
|
|

Hi All.

I'm implementing a web based document management system and I'd like to implement ACLs in my system. My formal requirements are hierarchal permissions (documents inherit permissions from their folders) user groups (users can dynamically create groups and associate users with groups). Such groups can have permissions on objects in the system.

My code will query permission on objects in two cases: 1. Manipulating a single document 2. Listing all documents where a manipulation is possible

The latter requirement seems the achilles heel for Spring Security ACLs (their method seems likely to incur multiple DB hits for each document I manage)

Anyone know of another ACL implementation?

Thanks!

© Stack Overflow or respective owner

Related posts about java

Related posts about acl