Google News
logo
Java Spring MVC - Interview Questions
What is the function of annotation @RequestBody?
The @RequestBody annotation is responsible for binding the HTTP body request to a domain object. The incoming HTTP request is automatically de-serialized to the Java object by Spring with the help of the HTTP message converters.
Advertisement