Spring MVC: REST application with CNVR vol. 3

This is a final, third part of Spring MVC REST tutorial with CNVR. Here I will demonstrate how all that stuff works, which I have developed within first two parts. Here will be four sections for each type of CRUD operations: CREATE, READ, UPDATE, DELETE. As a pre-requirement you need to install any REST client for a working with a REST requests.

Spring REST: CREATE

The first operation will be creation of a smartphone. I’m going to use POSTMAN REST client. It’s a Google Chrome extension and you can download it absolutely free. When I perform CREATE or UPDATE operation I have to pass some data in a body of the request which will be used for creation or update of entity. So let’s see how it works:

Spring-REST-Create


Source : http://www.javacodegeeks.com/2013/07/spring-mvc-rest-application-with-cnvr-vol-3.html

Back to Top