第 2 章 SpringMVC 注解式开发-@RequestMapping
2.1 @RequestMapping 定义请求规则
2.1.1 指定模块名称
通过@RequestMapping 注解可以定义处理器对于请求的映射规则。该注解可以注解在方法上,也可以注解在类上,但意义是不同的。value 属性值常以“/”开始。
@RequestMapping 的 value 属性用于定义所匹配请求的 URI。但对于注解在方法上与类上,其 value 属性所指定的 URI,意义是不同的。
一个@Controller 所注解的类中,可以定义多个处理器方法。当然,不同的处理器方法所匹配的 URI 是不同的。这些不同的 URI 被指定在注解于方法之上的@RequestMapping 的value 属性中。但若这些请求具有相同的 URI 部分,则这些相同的 URI,可以被抽取到注解在类之上的@RequestMapping 的 value 属性中。此时的这个 URI 表示模块的名称。URI 的请求是相对于 Web 的根目录。
换个角度说,要访问处理器的指定方法,必须要在方法指定 URI 之前加上处理器类前定
义的模块名称
此模块通过前一篇的博客改造:
-
Step1:修改处理器类 MyController。
package com.bjpowernode.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.servlet.ModelAndView; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import javax.xml.ws.RequestWrapper; /** * @RequestMapping: * value : 所有请求地址的公共部分,叫做模块名称 * 位置: 放在类的上面 */ @Controller @RequestMapping("/user") public class MyController { /** * @RequestMapping : 请求映射 * 属性: method, 表示请求的方式。 它的值RequestMethod类枚举值。 * 例如表示get请求方式, RequestMethod.GET * post方式, RequestMethod.POST * * 你不用get方式,错误是: * HTTP Status 405 - Request method 'GET' not supported */ //指定some.do使用get请求方式 @RequestMapping(value = "/some.do",method = RequestMethod.GET) public ModelAndView doSome(){ // doGet()--service请求处理 //处理some.do请求了。 相当于service调用处理完成了。 ModelAndView mv = new ModelAndView(); mv.addObject("msg","欢迎使用springmvc做web开发"); mv.addObject("fun","执行的是doSome方法"); mv.setViewName("show"); return mv; } //指定other.do是post请求方式 @RequestMapping(value = "/other.do",method = RequestMethod.POST) public ModelAndView doOther(){ ModelAndView mv = new ModelAndView(); mv.addObject("msg","====欢迎使用springmvc做web开发===="); mv.addObject("fun","执行的是doOther方法"); mv.setViewName("other"); return mv; } //不指定请求方式,没有限制 @RequestMapping(value = "/first.do") public ModelAndView doFirst(HttpServletRequest request, HttpServletResponse response, HttpSession session){ ModelAndView mv = new ModelAndView(); mv.addObject("msg","====欢迎使用springmvc做web开发====" + request.getParameter("name")); mv.addObject("fun","执行的是doFirst方法"); mv.setViewName("other"); return mv; } }
-
Step2:添加视图页面\
其中有一个get的超链接,还有一个post连接的form表单:
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Title</title> </head> <body> <p>第一个springmvc项目</p> <p><a href="user/some.do">发起some.do的get请求</a> </p> <br/> <form action="user/first.do" method="post"> <input type="submit" value="post请求other.do"> </form> </body> </html>
2.1.2 对请求提交方式的定义
对于@RequestMapping,其有一个属性 method,用于对被注解方法所处理请求的提交方式进行限制,即只有满足该 method 属性指定的提交方式的请求,才会执行该被注解方法。
Method 属性的取值为 RequestMethod 枚举常量。常用的为 RequestMethod.GET 与RequestMethod.POST,分别表示提交方式的匹配规则为 GET 与 POST 提交。
以上处理器方法只能处理 POST 方式提交的请求。客户端浏览器常用的请求方式,及其提交方式有以下几种:
也就是说,只要指定了处理器方法匹配的请求提交方式为 POST,则相当于指定了请求发送的方式:要么使用表单请求,要么使用 AJAX 请求。其它请求方式被禁用。
当然,若不指定 method 属性,则无论是 GET 还是 POST 提交方式,均可匹配。即对于请求的提交方式无要求。