@RequestMapping是Spring Web应用中最常见的注解之一,它主要将Http的请求映射到我们的控制器和处理方法上。
@RequestMapping可以用在方法上,也可以用在类上,这里我们一起看下它的用法,可能会和@PathVariable或@RequestParam结合使用。
用法参考
- 注解写在类上和方法上。类上面的注解一般和写在方法上的注解一起使用。当请求为
/example/index
的时候就会映射到ExampleController的index方法上。然后下面是定义多个路径映射到一个方法上
@Controller
@RequestMapping("/example")
public class ExampleController {
@RequestMapping("/index")
public String index(){
return "ok";
}
@RequestMapping({"/index1", "/", "index2"})
public String indexMulti() {
return "ok";
}
}
- 指定特定的HTTP方法才能映射,必须是POST方法,并且路径为/method才可以
@RequestMapping(value = "/method",method = RequestMethod.POST)
public String testMethod(){
return "ok";
}
- 指定http的headers。只有在http请求时请求头里有header1=value1这个请求头的才可以进来
@RequestMapping(value = "/header",headers = "header1=value1")
public String testHeaders(){
return "ok";
}
- 匹配请求的content-type,输出特定类型的请求。只有当请求的content-type为时text/html才能匹配,返回的响应信息的类型为"application/json"或"application/xml"
@RequestMapping(value = "/accept",produces = {"application/json","application/xml"}, consumes="text/html")
public String testAccept(){
return "ok";
}
@PathVariable
@RequestMapping注解可以用于处理动态的URI,将URI中的一个或者多个值作为参数。甚至可以使用正则表达式。处理动态URI一般要配合@PathVariable注解一起使用。用法如下:
// 当请求的URI为 /method7/123时,id的值为123
@RequestMapping(value = "/method7/{id}")
public String method7(
@PathVariable("id") Integer id
) {
return "method7 with id=" + id;
}
//请求的URI为/method8/10/Lisa时,id为10,name为Lisa
@RequestMapping(value = "/method8/{id:[\\d]+}/{name}")
public String method8(
@PathVariable("id") Long id,
@PathVariable("name") String name
) {
return "method8 with id= " + id + " and name=" + name;
}
@RequestParam
有时候我们想从请求的地址中获取请求的参数,我们可以使用@RequestParam注解。用法如下:
@RequestMapping(value = "/id")
String getIdByValue(@RequestParam("id") String personId) {
System.out.println("ID is " + personId);
return "从URI中获取id的值";
}
完整代码
@Controller
@RequestMapping("/example")
public class ExampleController {
@RequestMapping({"/index", "/", "inde"})
public String index() {
return "ok";
}
@RequestMapping(value = "/method", method = RequestMethod.POST)
public String testMethod() {
return "ok";
}
@RequestMapping(value = "/header", headers = "header1=value1")
public String testHeaders() {
return "ok";
}
@RequestMapping(value = "/accept", produces = {"application/json", "application/xml"}, consumes = "text/html")
public String testAccept() {
return "ok";
}
@RequestMapping(value = "/method7/{id}")
public String method7(
@PathVariable("id") int id
) {
return "method7 with id=" + id;
}
@RequestMapping(value = "/method8/{id:[\\d]+}/{name}")
public String method8(
@PathVariable("id") long id,
@PathVariable("name") String name
) {
return "method8 with id= " + id + " and name=" + name;
}
@RequestMapping(value = "/id")
String getIdByValue(@RequestParam("id") String personId) {
System.out.println("ID is " + personId);
return "从URI中获取id的值";
}
}
最后
可以看到@RequestMapping是非常灵活的,基本上满足所有我们对URI映射处理的需求,这里先不对代码作测试了。
参考
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦