Developing REST services in Spring
Learn about the basic concepts of REST and Spring’s support of RESTful web services.
We'll cover the following...
We'll cover the following...
REST support in Spring
Spring framework is a very good choice for creating REST applications. Spring provides specialized annotations that make RESTful application development easy. Some examples include @RestController
, @ResponseBody
and @ResponseStatus
etc.
Press + to interact
Spring also automatically handles Jackson integration which makes conversion of data from JSON to POJO and vice versa a breeze. Any JSON data received by the controller is automatically converted to a POJO and any POJO returned by the controller is converted to JSON. ...