I work on a project which uses Spring Security. I would like to use the ACL mechanism to manage security on domain object.
The problem is that my project uses Cassandra and elastic search, and so no sql database.
Is there a way to store spring security ACL into a nosql structure (cassandra) or indexer (elastic search) to avoid creating a relational database specifically for ACL ?
I don’t think there is an implementation of nosql data structures for spring security domain ACL’s. It should be simple if you want to implement one on your own. Start looking at
MutableAclServiceandLookupStrategyinterfaces.