Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started