Skip to content

Latest commit

 

History

History

micro-frameworks

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

This directory contains the CRUD application implemented in different microframeworks.

  1. javalin-app A sample CRUD application written in javalin

  2. sapark WIP. A sample CRUD application written in spark framework

All application offer CRUD rest endpoints for below model (person)

    {
        "id":1,
        "firstName":"Satish",
        "lastName":"Sharma"
    }

How to run

These are simple java application. You can run the main class, or you can package this application and run that as jar

sample-requests folder contains postman collection for the requests. You can import that in Postman and test this application