A sample REST API application using Manifold JSON Schema and SparkJava.
Notable:
- Demonstrates API-first and single source of truth solely with JSON Schema. No code gen step!, no POJOs, no annotations.
- A REST API server with SparkJava is a natural fit with Manifold's JSON support as defined in
UserServer - REST API client code is made simple as illustrated in the
UserClientclass - Rich development experience. With Manifold's IntelliJ IDEA plugin you can rapidly develop REST APIs with JSON Schema. Quickly navigate between JSON Schema files and usages in your code, refactor, find usages, code completion, incremental compilation, etc. All without the burden of a code generation step or maintaining POJOs -- your JSON Schema API files are your API!
Manifold is best experienced in IntelliJ IDEA.
-
Install the Manifold IntelliJ plugin directly from IntelliJ IDEA:
Settings ➜ Plugins ➜ Browse repositories ➜ search:
Manifold -
Close and relaunch IDEA
-
Open this project:
manifold-sample-rest-api -
Be sure to setup an SDK for Java 11:
Project Structure ➜ SDKs ➜ + ➜ JDK
-
Or change the
pom.xmlfile to use a JDK of your choosing, Manifold fully supports Java 8 - 13
- Run the
restapi.UserServerclass directly with Java - or load this project in IntelliJ and run the
restapi.UserServerclass - Launch a browser and go to
http://localhost:4567/Usersto see the JSON results for all Users - Run the
restapi.UserServerTest
- The
restapi.UserClientis a simple client to illustrate basic client API code with therequest()API method.