Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 2.34 KB

README.md

File metadata and controls

33 lines (26 loc) · 2.34 KB

spring-boot-crud

Implementing the spring boot crud operations on student entity by using Postman Rest api

Rest API request for Postman Rest API:

  1. Save student: POST http://localhost:8080/student
  2. Get student by Id: GET http://localhost:8080/student/2
  3. Get All students: GET http://localhost:8080/student
  4. Update a student: PUT http://localhost:8080/student/5
  5. Delete a student: DELETE http://localhost:8080/student/6

image image image image image


Command Prompt and Chrome or any browser cURL syntax for REST API:

  1. Save student: curl -X POST -H "Content-Type: application/json" -d "{"name":"milind","email":"[email protected]"}" http://localhost:8080/student
  2. Get student by Id: curl http://localhost:8080/student/1
  3. Get All students: curl http://localhost:8080/student
  4. Update a student: curl -X PUT -H "Content-Type: application/json" -d "{"id":23,"name":"karan","email":"[email protected]"}" http://localhost:8080/student/23 -v
  5. Delete a student: curl -X DELETE http://localhost:8080/student/24

note:

  1. cURL is a networking tool used to transfer data between a server and the curl client using protocols like HTTP, FTP, TELNET, and SCP.
  2. cURL is a command-line tool that lets you transmit HTTP requests and receive responses from the command line or a shell script. It is available for Linux distributions, Mac OS X, and Windows.
  3. cURL command syntax is used to construct the command in order to use cURL to run REST web API call: https://<HOST_OR_IP>/<BASE_INSTALL_DIR>/rest/
  4. reference website for cURL application: https://developer.adobe.com/commerce/webapi/get-started/gs-curl/ image