up vote 4 down vote favorite
2
share [g+] share [fb]

I need to secure a simple jersey RESTful API in a Tomcat 6.0.24 container. I'd like to keep the authentication with Basic Authentication using the tomcat-users.xml file to define the users and roles (this is for now, like I said its small).

Now, for authorization I'd like to be able to use the JSR 250 annotations like @RolesAllowed, @PermitAll, @DenyAll, etc.

I cannot for the life of me figure out how to wire this all up together.

I really don't want to go spring-security route, since I need something very simple at the current time.

Can someone point me in the right direction.

link|improve this question

74% accept rate
Since you tagged this question with spring and spring-security but you instead stated that you don't want to use it, are you actually using spring? If not, just leave them away. – BalusC Feb 18 '10 at 23:20
feedback

2 Answers

Since the answer is quite lengthy...I did a blog entry on this topic ... you can find it here: http://www.ericonjava.com/?p=325

link|improve this answer
feedback

Another good resource I found for basic authentication:

http://www.avajava.com/tutorials/lessons/how-do-i-use-basic-authentication-with-tomcat.html

There's a couple more tutorials in tomcat if you want to get fancier, as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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