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.