Created from the Archetype: jersey-quickstart-webapp
- Create a persistence.xml file. Name the persistence-unit: pu
- Create a few test users: See the file
jwtdemo.utils.setupTestUsers.js
- Build the project, either from within Netbeans or with maven: mvn package
- Run the project in any of these ways:
- Via Netbeans and it's Tomcat (or whatever) server
- Via Jetty, and maven: mvn jetty:run
- Directly with an embedded Jetty: See
server.RunServer
mvn test
mvn verify
- Whether the server is up
- Behaviour when accessing a protected resource without the required permissions
- Behaviour when accessing a protecte resource with the required permissions
- JAX-RS (jersey) with Tomcat or Jetty, either as war-deployment or embedded server
- @provider (used for cors-filters and Exception mappers)
- Unit-test with maven
- Integration test with maven and (in the provided code) Jetty
- Simple JWT-based authentication
- Simple annotation based authorization