4、框架-SpringMVC-请求映射详解及Restful风格

@RequestMapping

@RequestMapping注解用于映射url到控制器类或一个特定的处理程序方法。可用于类或方法上。用于类上,表示类中的所有响应请求的方法都是以该地址作为父路径。

只注解在方法上面
@Controller
public class TestController {
    @RequestMapping("/h1")
    public String test(){
        return "test";
    }
}

访问路径:http://localhost:8080/项目名/h1

同时注解类与方法
@Controller
@RequestMapping("/admin")
public class TestController {
    @RequestMapping("/h1")
    public String test(){
        return "test";
    }
}

访问路径:http://localhost:8080/项目名/admin/h1 , 需要先指定类的路径再指定方法的路径;

Restful风格

概念
Restful就是一个资源定位及资源操作的风格。不是标准也不是协议,只是一种风格。基于这个风格设计的软件可以更简洁,更有层次,更易于实现缓存等机制。

功能
资源:互联网所有的事物都可以被抽象为资源
资源操作:使用POST、DELETE、PUT、GET,使用不同方法对资源进行操作。
分别对应 添加、 删除、修改、查询。

传统方式操作资源
http://127.0.0.1/item/queryItem.action?id=1 查询,GET
http://127.0.0.1/item/saveItem.action 新增,POST
http://127.0.0.1/item/updateItem.action 更新,POST
http://127.0.0.1/item/deleteItem.action?id=1 删除,GET或POST

使用Restful操作资源
http://127.0.0.1/item/1 查询,GET
http://127.0.0.1/item 新增,POST
http://127.0.0.1/item 更新,PUT
http://127.0.0.1/item/1 删除,DELETE

在Spring MVC可以使用@PathVariable 注释方法参数的值对应绑定到一个URI模板变量上。

@Controller
@RequestMapping("/item")
public class MapperController {
   // @RequestMapping("add?p1=1&p2=2")
    @RequestMapping("/add/{p1}/{p2}/{name}/")
    public String add(@PathVariable int p1,@PathVariable int p2,@PathVariable String name, Model model){
        String sum = p1+p2+name;
        model.addAttribute("msg",sum);
        return "hello";
    }
}

再来对比一下我们传统的方法

    public ModelAndView add2(HttpServletRequest request, HttpServletResponse response){
        ModelAndView modelAndView = new ModelAndView();
        String p1 = request.getParameter("p1");
        String p2 = request.getParameter("p2");
        String add = p1+p2;
        modelAndView.addObject("msg",add);
        modelAndView.setViewName("hello");
        return modelAndView;

我们请求查看下
4、框架-SpringMVC-请求映射详解及Restful风格_第1张图片
使用路径变量的好处:使路径变得更加简洁;获得参数更加方便,框架会自动进行类型转换。通过路径变量的类型可以约束访问参数,如果类型不一样,则访问不到对应的请求方法,如这里访问是的路径是/chaowenli/4/5,则路径与方法不匹配,而不会是参数转换失败。
4、框架-SpringMVC-请求映射详解及Restful风格_第2张图片
我们来修改下对应的参数类型

@Controller
@RequestMapping("/item")
public class MapperController {
  // @RequestMapping("add?p1=1&p2=2")
   @RequestMapping("/add/{name}/{p1}/{p2}/")
   public String add(@PathVariable String name,@PathVariable int p1,@PathVariable int p2, Model model){
       String sum = p1+p2+name;
       model.addAttribute("msg",sum);
       return "hello";

   }
}

4、框架-SpringMVC-请求映射详解及Restful风格_第3张图片

method属性指定请求类型

用于约束请求的类型,可以收窄请求范围。指定请求谓词的类型如GET, POST, HEAD, OPTIONS, PUT, PATCH, DELETE, TRACE等

我们来测试一下

@Controller
@RequestMapping("/method")
public class MethodController {

    //method:限定请求的方法:get,post
    //这个方法的意思就是,请求 服务器/项目名/method/post 这个请求只能使用post方法提交
    @RequestMapping(value = "/post",method ={RequestMethod.POST})
    public String Post(Model model){
        model.addAttribute("msg","只允许post请求进入");
        return "hello"; //默认是转发

    }
}

我们使用浏览器地址栏进行访问默认是Get请求,会报错405:
4、框架-SpringMVC-请求映射详解及Restful风格_第4张图片
如果将POST修改为GET则正常了;

@Controller
@RequestMapping("/method")
public class MethodController {

    //method:限定请求的方法:get,post
    //这个方法的意思就是,请求 服务器/项目名/method/post 这个请求只能使用post方法提交
    @RequestMapping(value = "/post",method ={RequestMethod.GET})
    public String Post(Model model){
        model.addAttribute("msg","只允许post请求进入");
        return "hello"; //默认是转发

    }
}

访问
4、框架-SpringMVC-请求映射详解及Restful风格_第5张图片
Spring MVC 的 @RequestMapping 注解能够处理 HTTP 请求的方法, 比如 GET, PUT, POST, DELETE 以及 PATCH。

所有的请求默认都会是 HTTP GET 类型的。

方法级别的注解变体有如下几个:

  1. @GetMapping
  2. @PostMapping
  3. @PutMapping
  4. @DeleteMapping
  5. @PatchMappin

@GetMapping 是一个组合注解,它所扮演的是 @RequestMapping(method =RequestMethod.GET) 的一个快捷方式。

你可能感兴趣的:(4、框架-SpringMVC-请求映射详解及Restful风格)