码迷,mamicode.com
首页 > 移动开发 > 详细

@RequestMapping接口动态参数

时间:2020-04-25 16:45:28      阅读:310      评论:0      收藏:0      [点我收藏+]

标签:pre   version   method   eth   接收   apidemo   map   多参数   class   

1.多参数Map接收

1 @RequestMapping(value = "/{version}/{cate}/{article}",method = RequestMethod.GET)
2 public String dynApiDemo(@PathVariable Map<String, String> map){
3     String version = map.get("version");
4     String cateUrl = map.get("cate");
5     String articleUrl = map.get("article");
6     return version+"/"+cateUrl+"/"+articleUrl;
7 }


 
2.单参数接收

@RequestMapping(value = "/v1/{cate}",method = RequestMethod.GET)
public String dynApiDemo2(@PathVariable("cate")String cate){
    String cateUrl = map.get("cate");
    return "v1/"+cateUrl;
}

 

3.正则接收

@RequestMapping(value = "/regexp/{name:\\w}",method = RequestMethod.GET)
public String dynApiDemo3(@PathVariable("name")String name){
    System.out.println(name);
    return "";
}

 



@RequestMapping接口动态参数

标签:pre   version   method   eth   接收   apidemo   map   多参数   class   

原文地址:https://www.cnblogs.com/itzyz/p/12773753.html

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