printMenuDesertsOnly (GET) - adapalav/dev-ent-java-microserv-spring-final-proj-template GitHub Wiki

curl http://localhost:8080/printMenuDesertsOnly

Show Desserts (correctly spelled and misspelled, Dessert or Desert) only from Menu Items in Restaurant Database

/printMenuDesertsOnly - Print only Deserts only from menu items

Method: GET

URL / Path: /printMenuDesertsOnly /spring-proj-template/printMenuDesertsOnly

URL Params

Required: None

Optional: None

Data Params Headers: None

Success Response:

GET command success response: http://localhost:8080/printMenuDesertsOnly

SELECT * from menu_list WHERE (dish_type="Dessert" OR dish_type="Desert");

3, Halwa, Dessert, Desert made of floor, jaggery and sugar, 3.49 5, Gulab Jamun, Desert, Desert made of floor and sugar, 2.99 8, Ras Malai, Desert, Desert made of floor, condensed milk and sugar, 3.99

Failure Responses:

Connection Failure(One of the scenarios could be when Jetty not running): curl: (7) Failed to connect to ec2-52-88-192-213.us-west-2.compute.amazonaws.com port 8080: Connection refused

No response because of command specific error: (base) admins-MBP-2:~ vijayadapala$ curl http://localhost:8080/spring-proj-template/printAllCustomers {"timestamp":"2020-08-21T23:25:52.409+0000","status":404,"error":"Not Found","message":"No message available","path":"/spring-proj-template/printAllCustomers"}

Error With Incorrect Arguments: This application has no explicit mapping for /error, so you are seeing this as a fallback. Fri Aug 21 16:44:04 PDT 2020 There was an unexpected error (type=Method Not Allowed, status=405). Request method 'GET' not supported

Error sending all keys/values as params: {"timestamp":"2020-08-22T04:17:35.497+0000","status":404,"error":"Not Found","message":"No message available","path":"/"}

Code: 200 Content: { id : 12 } Error Response:

<Most endpoints will have many ways they can fail. From unauthorized access, to wrongful parameters etc. All of those should be listed here. It might seem repetitive, but it helps prevent assumptions from being made where they should be.>

Code: 401 UNAUTHORIZED Content: { error : "Log in" } OR

Code: 422 UNPROCESSABLE ENTRY Content: { error : "Email Invalid" }

Sample Call: curl http://localhost:8080/printAllCustomers

Notes: MySQL Query: SELECT * from menu_list WHERE (dish_type="Dessert" OR dish_type="Desert");

21st August 2020