@getMapping and @postmapping, @RestController difference

Source: Internet
Author: User

Differences between @RequestMapping and @GetMapping @PostMapping

@GetMapping is a combination annotation, an abbreviation for @requestmapping (method = Requestmethod.get).

@PostMapping is a combination annotation, an abbreviation for @requestmapping (method = Requestmethod.post).

What is the difference between @Controller and @restcontroller?

Official documents:
@RestController is a stereotype annotation that combines @ResponseBody and @Controller.
It means:
@RestController annotations are equivalent to @responsebody + @Controller together.

1) If you use the @restcontroller annotation controller only, the method in the controller cannot return to the JSP page, and the configured view resolver Internalresourceviewresolver does not work. The returned content is the content in return.

For example: should be to the success.jsp page, then its display success.

2) If you need to return to the specified page, you need to use the @Controller with the view resolver internalresourceviewresolver.
3) If you need to return Json,xml or custom mediatype content to the page, you need to add @responsebody annotations to the corresponding method

@getMapping and @postmapping, @RestController difference

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.