上一篇讲了Spring Boot项目再IDEA上的项目结构,以及注解@SpringBootApplication。因为现在大多数项目都是前后端分离,所以今天讲的就是在Spring Boot的项目下创建简单的Get接口。
首先,创建一个类,因为默认的MVC结构就是Model—View—Controller,所以我们创建了一个TestController,具体如下图
这里的五个Get接口基本上包含了一般的Get请求,那我们从头慢慢开始讲解。
@RestController
@RestController,这个注解是什么意思呢。简单的理解就是@ResponseBody + @Controller
->如果只是使用@RestController注解Controller,则Controller中的方法无法返回jsp页面,配置的视图解析器InternalResourceViewResolver不起作用,返回的内容就是Return 里的内容。
例如:本来应该到index.jsp页面的,则其显示文本index.
->如果需要返回到指定页面,则需要用 @Controller配合视图解析器InternalResourceViewResolver才行。
->如果需要返回JSON,XML或自定义mediaType内容到页面,则需要在对应的方法上加上@ResponseBody注解。
@RequestMapping("/demo")
@RequestMapping是一个用来处理请求地址映射的注解,可用于类或方法上。用于类上,表示类中的所有响应请求的方法都是以该地址作为父路径。图中的就是表示这个类下面的所有方法父路径就是http://*****/demo/*****
RequestMapping一共有六个注解。
->value、method
value:指定请求的实际地址,指定的地址可以是URI Template 模式(后面将会说明)
method:指定请求的method类型, GET、POST、PUT、DELETE等
->consumes、produces
consumes:指定处理请求的提交内容类型(Content-Type),例如application/json, text/html
produces:指定返回的内容类型,仅当request请求头中的(Accept)类型中包含该指定类型才返回
->params、headers
params:指定request中必须包含某些参数值是,才让该方法处理
headers:指定request中必须包含某些指定的header值,才能让该方法处理请求
通过例子可以更直观的解释各个属性的含义
1、value、method
value指定的是UR值,可定为三类:
a、普通的地址,类似"/api"
@RequestMapping(value="/testGet1",method= RequestMethod.GET)
publicStringTest(){
return"testGet";
}
b、含有变量的值,可以参考restful 类型的api类似“/api/{id}”
@RequestMapping(value="/testGet1/{id}",method= RequestMethod.GET)
publicStringTest(@PathVariableString id){
returnid;
}
c、含有正则表达式的一类值,类似的"/api/{version:[a-z]}"
@RequestMapping(value="/testGet1/{version:[a-z]}",method= RequestMethod.GET)
publicStringTest(@PathVariableString version){
returnversion;
}
2、consumes、produces
->consumes:表示方法仅处理request 中Content-Type 为指定值的请求
->produces:表示方法仅处理request中Accept头中包含了指定值的请求
@RequestMapping(value="/testGet2",method= RequestMethod.GET,consumes="application/json",produces="application/json")
publicStringTest2(String id){
returnid;
}
表示,这个接口仅处理Content-Type='application/json',Accept头中包含了application/json的请求
3、params、headers
->params:表示请求参数中要有指定的key-value值才能处理该请求
->headers:表示请求头中要包含指定的key-value值才能处理该请求
@RequestMapping(value="/testGet2",method= RequestMethod.GET,params="testKey=testValue",headers="Referer=http://weixiaochu.cn/")
publicStringTest2(){
return"";
}
例子表示只有当请求头中包含Referer=http://www.weixiaochu.cn/,请求参数中包含testKey,并且testKey的值是testValue值时,这个请求参能被处理
看完RequestMapping的注解,我们来介绍一下关于Get请求接收参数的问题。
Get请求一般参数/值都会在URL中体现,那么Spring Boot的Get请求参数怎么在方法中获取到呢
@RequestMapping(value="/testGet3",method= RequestMethod.GET)
publicStringTest3(@RequestParam("id") String idName){
returnidName;
}
这种方法是用RequestParam来获取请求参数key=id,并且把值赋到idName中
@RequestMapping(value="/testGet4/{id}",method= RequestMethod.GET)
publicStringTest4(@PathVariableString id ){
returnid;
}
这种方法是用PathVariable,这时候一定要注意,方法接收的参数名一定要和URL中的一样,例子中都是id
@RequestMapping(value="/testGet4",method= RequestMethod.GET)
publicStringTest4( String id ){
returnid;
}
这种方法直接读取URL中id,这个方法要确保方法的接收参数名和URL中的参数名一样,要不然接收不成功。
今天就介绍RequestMapping和get方法请求的参数接收。
可以关注微信公众号:【ITjishuzaji】 获取最新文章
网友评论