码迷,mamicode.com
首页 > 其他好文 > 详细

RESTful风格

时间:2020-01-22 00:58:23      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:turn   mode   java   ppi   方法   oca   pat   amp   eth   

RESTful风格

传统方式

@RequestMapping("/add")
public String test1(int a, int b, Model model) {
    int res = a + b;
    model.addAttribute("msg", "a + b = " + res);
    return "test";
}

url: http://localhost:8080/r/add?a=5&b=2

页面输出:a + b = 7

RESTful风格

@RequestMapping("/add/{a}/{b}")
public String test1(@PathVariable int a, @PathVariable int b, Model model) {
    int res = a + b;
    model.addAttribute("msg", "a + b = " + res);
    return "test";
}

url:http://localhost:8080/r/add/5/2

页面输出:a + b = 7

指定方法

//@RequestMapping(value = "/add/{a}/{b}", method = RequestMethod.GET)
@GetMapping("/add/{a}/{b}")//效果同上
public String test1(@PathVariable int a, @PathVariable String b, Model model) {
    String res = a + b;
    model.addAttribute("msg", "ab = " + res);
    return "test";
}
@PostMapping("/add/{a}/{b}")//实现url复用
public String test2(@PathVariable int a, @PathVariable String b, Model model) {
    String res = a + b;
    model.addAttribute("msg", "ab = " + res);
    return "test";
}

不同方法用不同的注释:

  • @GetMapping
  • @PostMapping
  • @PutMapping
  • @DeleteMapping
  • @PatchMapping

RESTful风格

标签:turn   mode   java   ppi   方法   oca   pat   amp   eth   

原文地址:https://www.cnblogs.com/pinked/p/12227373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!