vote up 0 vote down star

Hi,

Can some one provide me some pointers about access control in JAX-Rs web services. e.g. limiting access on the basis of user credentials, or name or any other criteria. Could not find any useful information in the sun manuals.

Thanks in advance, Adhir

flag

54% accept rate

2 Answers

vote up 0 vote down

I personally use Spring security to accomplish this. Spring security allows for easy use of various authentication and authorizations schemes (say looking the user rights passed in the HTTP headers in a database or using LDAP). It's not to hard to set up with JAX-RS (at least with Jersey) and also has a nifty aspect based rights system where you can do stuff like

@PreAuthorize("hasRole('ROLE_ADMIN') or user.username == 'ADMIN') List findAll();

which ensures that a user must either be in the ROLE_ADMIN group or have the username ADMIN to be allowed access.

link|flag
vote up 0 vote down

There are many ways that people have accomplished this and there are a number of great threads on the topic on this site (see Best Practices for securing a REST API / web service)

I personally use OAuth to accomplish this task. For more information on OAuth check out Beginner’s Guide to OAuth

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.