1

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?
Aravind Cheekkallur
  • 3,157
  • 6
  • 27
  • 41

1 Answers1

0

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.

Garnett
  • 403
  • 1
  • 6
  • 14
  • All ready am using spring security 3.1. Here i need a high level User management module. Any API's for this? – Aravind Cheekkallur Dec 24 '13 at 10:07
  • @AravindCheekkallur, see the documentation link in my answer. If you want the api, refer to [spring security apidocs](http://docs.spring.io/spring-security/site/docs/3.1.4.RELEASE/apidocs/). Spring Security domain-acls is not complicated to use, but it will be invasive to your code. The **Contacts** sample is really good material for you if you want to apply spring security to your app. – Garnett Dec 24 '13 at 13:17