时间:2021-05-21
获取URL动态变量,例如
@RequestMapping("/users/{userid}") @ResponseBody public String getUser(@PathVariable String userid){ return "userid=" + userid; }spring自从3.0版本就引入了org.springframework.web.bind.annotation.PathVariable,
这是RESTful一个具有里程碑的方式,将springMVC的精华推向了高潮,那个时代,跟微信公众号结合的开发如火如荼,很多东西都会用到URL参数带值的功能。
- 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的参数也接收进去
前面讲作用的时候已经有一个,现在再提供多一个,别人访问的时候可以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()); } } }补充:解决@PathVariable接收参数带点号时只截取点号前的数据的问题
本来fileName参数传的是:userinfo.docx,
但结果接收到的是:userinfo
这显然不是我想要的。
参数fileName这样写,表示任何点(包括最后一个点)都将被视为参数的一部分:
{fileName:.+}以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
获取传参@PathVariable注解主要用来获取URL参数。即这种风格的URL:http://localhost:8080/user/{id}@GetMapp
spring对AOP的实现提供了很好的支持。下面我们就使用Spring的注解来完成AOP做一个例子。首先,为了使用Spring的AOP注解功能,必须导入如下几个
带占位符的URL是Spring3.0新增的功能,该功能在SpringMVC向REST目标挺进发展过程中具有里程碑的意义。通过@PathVariable可以将UR
PathVariable映射URL绑定的占位符带占位符的URL是Spring3.0新增的功能,该功能在SpringMVC向REST目标挺进发展过程中具有里程碑的
@RequestParam和@PathVariable注解是用于从request中接收请求的,两个都可以接收参数,关键点不同的是@RequestParam是从r