Request URI
部分的注解:@PathVariable
处理Request Header
部分的注解:@RequestHeader
,@CookieValue
处理Request Body
部分的注解:@RequestParam
,@RequestBody
处理Attribute
类型的注解:@sessionAttribute
,@ModelAttribute
@RequestMapping URI template
样式映射时,即url/{param}
,这时param
可以通过@PathVariable
注解绑定它传过来的值到方法的参数上 @Controller public class RelativePathUriTemplateController { @RequestMapping("/url/{param}") public void getParams(@PathVariable String param) { //.... } } Request
请求的Header
部分的值绑定到方法的参数上 Host localhost:8080 Accept text/html,application/xhtml+xml,application/xml;q=0.9 Accept-Language fr,en-gb;q=0.7,en;q=0.3 Accept-Encoding gzip,deflate Accept-Charset ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive 300 @RequestMapping("/url") public void displayHeaderInfo(@RequestHeader("Accept-Encoding") String encoding, @RequestHeader("Keep-Alive") long keepAlive) { //... } 把request header
部分的 Accept-Encoding
的值,绑定到参数encoding
上了, Keep-Alive header
的值绑定到参数keepAlive
上。
RequestHeader
中关于cookie
的值绑定到方法的参数上@RequestMapping("/url") public void displayHeaderInfo(@CookieValue("JSESSIONID") String cookie) { //... } Content-Type
不是application/x-www-form-urlencoded
编码的内容,例如application/json
,application/xml
等通过使用HandlerAdapter
配置的HttpMessageConverter
来解析data body
,然后绑定到相应的Bean
上因为配置有FormHttpMessageConverter
,所以也可以用来处理application/x-www-form-urlencoded
的内容,处理完的结果放在一个MultiValueMap<String,Stirng>
里 @RequestMapping(value = "/url", method = RequestMethod.POST) public void handle(@RequestBody String body) throws IOException { //... } Controller
的方法返回的对象,通过适当的HttpMessageConverter
转换为指定格式的数据写入到Response
对象的body
数据区 @ResponseBody @RequestMapping("/") public RedirectView root() { return new RedirectView("/index/index.html"); }HttpSession
中的Attribute
对象的值 @Controller @RequestMapping("/editPet.do") @SessionAttributes("pet") public class EditPetForm { // ... } @RequestMapping
之前,为请求绑定需要从后台查询的Model
@ModelAttribute public Account addAccount(@RequestParam String number) { return accountManager.findAccount(number); } 这种方式实际的效果就是在调用@RequestMapping
的方法之前,为request
对象的model
里put("account",Account)
Bean
上,要绑定的值来源于 @SessionAttributes
启用的Attribute
对象@ModelAttribute
用于方法上时指定的Model
对象以上两种情况都没有时,new
一个需要绑定的Bean
对象,然后把Request
中按名称对应的方式把值绑定到Bean
中 @RequestMapping(value="/owners/{ownerId}/pets/{petId}/edit", method = RequestMethod.POST) public String PRocessSubmit(@ModelAttribute Pet pet) { } 首先查询 @SessionAttributes
有无绑定的Pet对象,若没有则查询@ModelAttribute
方法层面上是否绑定了Pet对象,若没有则将URI template
中的值按对应的名称绑定到Pet对象的各属性上
转自http://blog.csdn.net/walkerjong/article/details/7946109
新闻热点
疑难解答