Skip to content
Roland Schuller edited this page Apr 6, 2019 · 2 revisions

Simple REST Java Library

SimpleRest Logo A REST Library is the Base of most systems. This has to be fast and reliable. But for me as Developer it also has to be easy to use. Spring.io systems are to bloated and full of things you don't need or don't know how to use it. SimpleREST tends to be a easy to use and fast to implement REST API.

Features:

  • Based on Netty to be fast and reliable
  • Full JSON Support
  • Works with Java POJOS
  • Jackson JSON parser and converter
  • JWT (JSON Web Token) and Basic HTTP Auth out of the box
  • Default Wrapper for all responses so you can see HTTP status and answer in the JSON.
  • Simple Default Functions for Index, Exceptions, Not Found
  • CatchAll functions for every Path
  • Access control for paths and endpoits
  • HTML Endpoints (from Ressource or FileStructure)
  • CRUD Helper for easy to use Create, Read, Update, Delete Operations on entities

How to Make your first example

First own Endpoint

Path and Endpoints with Parameter

Catch All Endpoints

HTML Endpoints

User and Authententication

CRUD Helper

Clone this wiki locally