A java ninjaframework simple REST template project
mvn ninja:run
A simple REST project that allows listing/creating/editing/deleting Blog objects.
There is no database, persistence is in memory and lost as soon as the application ends.
/listblogs (GET)
/viewblog/{id} (GET)
//createblog (POST Blog.java)
/editblog (POST Blog.java)
/deleteblog (POST Blog.java)
int id;
String title = "";
String content = "";