一.常用注解
1.注解的种类
1.@RequestMapping注解
2.@RequestParam注解
3.@PathVariable注解
4.@CookieValue注解
5.@RequestHeader注解
6.@ResponseBody注解
7.@RequestBody注解
2.@RequestMapping注解
常用属性
1.value属性:
映射URL路径
2.method属性:
限制对控制器的访问,通过设置RequestMethod.POST或RequestMethod.GET,来支持Get方式请求或Post方式请求
@Controller
@RequestMapping(value="/user")
public class IndexController {
@RequestMapping(value = "/toindex.do",method ={RequestMethod.POST,RequestMethod.GET} )
public String toIndex(){
return "index";
}
}
3.@RequestParam注解
一般标注于控制器方法的形参上,进行表单参数处理。
注意:
1.如果参数名与方法形参名一致,无需使用@RequestParam注解,否则,需使用该注解。
常用属性:
1.value属性
用来绑定查询字符串key和控制器方法形参。
2.defaultValue属性
用来设置当参数绑定为null时,指定一个默认值
3.required属性
用来设置查询字符串中的key是否必须存在。
@Controller
@RequestMapping(value="/user")
public class IndexController {
@RequestMapping("/dobiz.do")
public String doBiz(@RequestParam(value = "un" ,required = true) String username, @RequestParam(value="pw",defaultValue = "1234") String password){
System.out.println(username+","+password);
return "index";
}
}
1.当查询字符串没有协带un参数时,因为设置required = true,所以抛出
400 - Required String parameter 'un' is not present。
2.当pw设置defaultValue = "1234"时,如果pw为空串或null值,则会使用默认值1234.
4.@CookieValue注解
可以获取请求中的cookie值。
@Controller
@RequestMapping(value="/user")
public class IndexController {
@RequestMapping("/dobiz2.do")
public String doBiz2(HttpSession session){
return "index";
}
@RequestMapping("/dobiz3.do")
public String doBiz3(@CookieValue(value = "JSESSIONID") String cookie){
System.out.println(cookie);
return "index";
}
}
5.@PathVariable注解
见RESTful风格参数处理
6.@ResponseBody注解
见JSON数据处理
7.@RequestHeader注解
用来获取请求头中的参数值
@Controller
@RequestMapping(value="/user")
public class IndexController {
@RequestMapping("/dobiz4.do")
public String doBiz4(@RequestHeader(value = "Host") String host){
System.out.println(host);
return "index";
}
}
Http请求头:
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
Accept-Encoding: gzip, deflate, br
Accept-Language: zh-CN,zh;q=0.9
Connection: keep-alive
Cookie: JSESSIONID=11C3644DD0BF484F2DBAAAF2B553BAA1; username=admin; password=e10adc3949ba59abbe56e057f20f883e
Host: localhost:8080
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36