Question: Backend Your Backend task is to build a simple RESTful, JSON API to power a note-taking application. Guidelines The API should be implemented in Java,


Backend Your Backend task is to build a simple RESTful, JSON API to power a note-taking application. Guidelines The API should be implemented in Java, C#, or C++. Any frameworks you use are up to you. I should be able to download your code from github.com and run it on my machine, so you should include instructions for setup/configuration. The easier it is for me to setup and deploy, the better. The notes API should live at the route /apiotes . So, if your API server is running on localhost, I would expect to access the 'notes' API at http://localhost/apiotes The Note Model "body" "Ask Larry about the TPS reports." Create a New Note When I POST note JSON to the notes route, a new note will be created. POST /apiotes BODY a note Returns: a saved note.. curl -i -H "Content-Type: application/json" -x POST -d '"body""Pick up milk!"'h ttp://localhost/apiotes
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
