RestController 相当于@Controller 和 @RequestBody
@RequestMapping URL的映射。
@ResponseBody 返回结果转换为JSON字符串。
@RequestBody 表示接收JSON格式字符串参数。
@RequestMapping(value = "/saveUser", method = RequestMethod.POST)
@ResponseBody
public MapsaveUser( @RequestBody User user) throws Exception {
Map map = new HashMap();
map = userService.saveUser(user);
return map;
}
@PathVariable 路径后面带的参数
@RequestMapping(value = "/user/{id}")
private Girl getUserOne(@PathVariable("id") Integer id){
return userService.findOne(id);
}
@Conumes 和 @Produces
@Conumes注释代表的是一个资源可以接受的MIME类型。
@Produces注释代表的是一个资源可以返回的MIME类型。
@RequestMapping(value = "/article/{id}", method = GET, produces = "application/json")
@RequestParam和@RequestBody的区别
区别:由于spring的RequestParam注解接收的参数是来自于requestHeader中,即请求头,也就是在url中,格式为xxx?username=123&password=456,而RequestBody注解接收的参数则是来自于requestBody中,即请求体中。
使用说明:如果为get请求时,后台接收参数的注解应该为RequestParam,如果为post请求时,则后台接收参数的注解就是为RequestBody。
@RequestParam参数说明:
* value值 即请求参数名
* required 该参数是否必需。默认为true
* defaultValue请求参数的默认值
@Valid 验证参数
@ResponseBody
@PostMapping(value="/add")
public String add(@Valid Student student){
studentService.add(student);
return "添加成功!";
}
Student 实体举例:
public class Student {
@NotEmpty(message="姓名不能为空!")
@Column(length=50)
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
注解说明:
@Null 限制只能为null
@NotNull 限制必须不为null
@AssertFalse 限制必须为false
@AssertTrue 限制必须为true
@DecimalMax(value) 限制必须为一个不大于指定值的数字
@DecimalMin(value) 限制必须为一个不小于指定值的数字
@Digits(integer,fraction) 限制必须为一个小数,且整数部分的位数不能超过integer,小数部分的位数不能超过fraction
@Future 限制必须是一个将来的日期
@Max(value) 限制必须为一个不大于指定值的数字
@Min(value) 限制必须为一个不小于指定值的数字
@Pattern(value) 限制必须符合指定的正则表达式
@Size(max,min) 限制字符长度必须在min到max之间
@Past 验证注解的元素值(日期类型)比当前时间早
@NotEmpty 验证注解的元素值不为null且不为空(字符串长度不为0、集合大小不为0)
@NotBlank 验证注解的元素值不为空(不为null、去除首位空格后长度为0),不同于@NotEmpty,@NotBlank只应用于字符串且在比较时会去除字符串的空格
@Email 验证注解的元素值是Email,也可以通过正则表达式和flag指定自定义的email格式
网友评论