In this article, 3 schema about spring security implementation are introduced. I want to know the differences between user schema and acl schema, which one is better to use, or in other words, I want to know the domain usage of each one, in order to choose the best solution for my application.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||
|
|
You cannot use ACL schema without User schema (because authentication process depends on User schema and normally you always need authentication). You have two options:
Let's see what they can do for you: User schema is for authentication and authorisation based on roles. You can secure URL or method invocation. With User schema you can handle followig cases:
ACL schema is for enhanced authorisation. It will take in account actual domain object. You will be able handle following cases:
So go on with User schema and add later ACL schema if you need it. |
||||
|
|