Skip to content

durimkryeziu/jersey-2.x-webapp-for-servlet-container

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sample Jersey 2.x RESTful Web Application

Travis branch Coveralls branch License: Unlicense

Sample Jersey 2.x RESTful Web Application that can be deployed in a Servlet 3.0 Container (i.e. Tomcat 7+, Jetty 8+, GlassFish 3.0.1+ etc). It can be used to help you start a Jersey Webapp quickly with very few modifications on the (NO XML) configuration files.

docs

Overview

  • Based on Descriptor-less deployment option (No JAX-RS Deployment descriptor)

  • Leverages HikariCP to connect with H2 database (Embedded)

  • Uses YAML syntax for Log4j2 configuration file

  • Uses Jackson Library for data-binding

  • Leverages Jersey Test Framework for testing

  • Validations are based on Bean Validation. Uses both Built-in constraints and Custom constraints

  • Utilizes Jersey Filters to support Basic Authentication

  • Supports URI-based content negotiation for JSON and XML

    GET /books.json -- Returns JSON response

    GET /books.xml -- Returns XML response

  • Utilizes Swagger for documentation

Installation

1️⃣ git clone https://github.com/durimkryeziu/jersey-2.x-webapp-servlet-container.git

2️⃣ Point CATALINA_HOME environment variable to your Servlet Container for log files

3️⃣ Close all other connections to the embedded mode H2 Database if any or modify the hikari.properties file to use the server mode

4️⃣ mvn clean install or mvn -Dmaven.test.skip=true clean install to skip tests

5️⃣ Deploy the war file on your favorite Servlet Container and you will be all set up.

6️⃣ Username and Password for accessing API using Basic Auth are: durimkryeziu:password

References

License

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org