Lightweight RESTful library for Java
import io.jrest.*;
public class HelloWorld {
public static void main(String[] args) {
JRest app = JRest.create().start();
app.get("/", (request) -> {
return new ResponseEntity(HttpStatus.OK, "Index! Welcome to JREST!");
});
}
}