I have a REST API implemented with the following technologies:
- Jersey 1.19 (JSR 311)
- Jackson
- Jettison
- Java 5
- Tomcat 7
Currently I implement Basic Authentication using a servlet filter but I need to implement token-based authentication.
How do I do that? What is the best tutorial?