pathVariable注解

spring3.0新加的功能,带占位符的URL
@PathVariable 可以来映射URL 中的占位符到目标方法的参数中。通过@PathVariable可以将URL中占位符参数绑定到控制器处理方法的入参中
@RequestMapping(“/testPahtVariable/{id}”)
testPahtVariable(@PathVariable(“id”) Integer id)
testPahtVariable(@PathVariable(value=“id”) Integer id)
HiddenHttpMethodFileter可以把post请求转为delete,或put请求 在xml中配置

(@RequestParam(value="name",required=true,defaultValue="hehe") String name,)

你可能感兴趣的:(spring)