Spring Annotation Method

Source: Internet
Author: User

 Spring MVC's @requestmapping explanation2013-10-13 23:39 246622 people read review (+) collection report Classification:Java Essentials article (163)

Directory (?) [+]

Introduction:

The rest style was used to develop the program in the previous time, but when the data was submitted in post and put, it was found that the server side did not accept the submitted data (the server-side parameter bindings did not add any annotations), and viewed the submission method as Application/json. And the server side of the data through Request.getreader () does exist in the browser submitted data. In order to find out the reason, the parameter binding (@RequestParam, @RequestBody, @RequestHeader, @PathVariable) was studied, and also looked at the relevant contents of Httpmessageconverter, summarized here.

Brief introduction:

@RequestMapping

Requestmapping is an annotation that handles request address mappings and can be used on classes or methods. On a class, the method that represents all response requests in a class is the parent path of the address.

The requestmapping annotation has six properties, and we'll describe her in three categories below.

1, value, method;

Value: Specifies the actual address of the request, the specified address can be the URI Template mode (which will be explained later);

Method: Specifies the type of method requested, GET, POST, PUT, delete, and so on;

2, Consumes,produces;

Consumes: Specifies the type of submission to process the request (Content-type), such as Application/json, text/html;

Produces: Specifies the type of content returned, only if the specified type is included in the (Accept) type in the request header;

3, Params,headers;

Params: Specifies that some parameter values must be included in the request before the method is processed.

Headers: Specifies that certain header values must be included in the request in order for the method to process requests.

Example: 1, value/method example

Default Requestmapping ("...") that is value;

[Java]View Plaincopy
  1. @Controller
  2. @RequestMapping ("/appointments")
  3. Public class Appointmentscontroller {
  4. Private final AppointmentBook AppointmentBook;
  5. @Autowired
  6. Public Appointmentscontroller (AppointmentBook appointmentbook) {
  7. This.appointmentbook = AppointmentBook;
  8. }
  9. @RequestMapping (method = Requestmethod.get)
  10. Public map<string, appointment> get () {
  11. return Appointmentbook.getappointmentsfortoday ();
  12. }
  13. @RequestMapping (value="/{day}", method = Requestmethod.get)
  14. Public map<string, appointment> getforday (@PathVariable @DateTimeFormat (iso=iso. Date) (Date day, model model) {
  15. return Appointmentbook.getappointmentsforday (day);
  16. }
  17. @RequestMapping (value="/new", method = Requestmethod.get)
  18. Public Appointmentform Getnewform () {
  19. return new Appointmentform ();
  20. }
  21. @RequestMapping (method = Requestmethod.post)
  22. Public String Add (@Valid appointmentform appointment, bindingresult result) {
  23. if (result.haserrors ()) {
  24. return "Appointments/new";
  25. }
  26. Appointmentbook.addappointment (appointment);
  27. return "redirect:/appointments";
  28. }
  29. }

Spring Annotation Method

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.