How to implement user access control mechanisam in web application

1.5k Views Asked by At

Am developing a web application using Springs. To make a scalability for my application am in need of user management system. In application having different groups each groups having different users.Every user having different roles.

  • To implement access control mechanism any API's available?
  • How to assign role for every users?
1

There are 1 best solutions below

2
On

I think Spring Security domain-acls is a good choice for you. You can take a look at Contacts sample first to decide whether it is fit for you.