@PathVariable注解,让spring支持参数带值功能

@PathVariable的作用

获取URL动态变量,例如

    @RequestMapping("/users/{userid}")
    @ResponseBody
    public String getUser(@PathVariable String userid){
        return "userid=" + userid; 
    }

@PathVariable的包引用

spring自从3.0版本就引入了org.springframework.web.bind.annotation.PathVariable,
这是RESTful一个具有里程碑的方式,将springMVC的精华推向了高潮,那个时代,跟微信公众号结合的开发如火如荼,很多东西都会用到URL参数带值的功能。

@PathVariable的PathVariable官方doc解释

 - Annotation which indicates that a method parameter should be bound to a URI template variable. Supported for RequestMapping annotated handler methods in Servlet environments. 

 - If the method parameter is Map<String, String> or MultiValueMap<String, String> then the map is populated with all path variable names and values.

翻译过来就是:
- 在SpringMVC中可以使用@PathVariable注解,来支持绑定URL模板参数(占位符参数/参数带值)
- 另外如果controller的参数是Map(String, String)或者MultiValueMap(String, String),也会顺带把@PathVariable的参数也接收进去

@PathVariable的RESTful示范

前面讲作用的时候已经有一个,现在再提供多一个,别人访问的时候可以http://localhost:8080/call/窗口号-检查编号-1

/**
     * 叫号
     */
    @PutMapping("/call/{checkWicket}-{checkNum}-{status}")
    public ApiReturnObject call(@PathVariable("checkWicket") String checkWicket,@PathVariable("checkNum") String checkNum,
            @PathVariable("status") String status) {
        if(StringUtils.isBlank(checkWicket) || StringUtils.isBlank(checkNum)) {
            return ApiReturnUtil.error("叫号失败,窗口号,检查者编号不能为空");
        }else {
            if(StringUtils.isBlank(status))  status ="1";
            try {
                lineService.updateCall(checkWicket,checkNum,status);
                return ApiReturnUtil.success("叫号成功");
            } catch (Exception e) {
                return ApiReturnUtil.error(e.getMessage());
            }
        }
    }

你可能感兴趣的:(Spring,SpringBoot2启示录)