Spring Boot Rest API Request Type
JAX-RS Rest Service
JAX-RS is an annotation-driven Java API that aims to make the development of Web services built according to the Representational State Transfer (REST) architectural style in Java
we are using GET/POST/PUT/DELETE: These are the request service type
GET: Retrieve the data
POST: Insert/Create the data
PUT: Updating the data
DELETE: Deleting the data
We are playing with these request types in the project
service is unique with the following constraints
= class request mapping + method request mapping + method request type