@PostMapping:
指定当前发送请求的方式只可以是post请求

@GetMapping:
指定当前发送请求的方式只可以是get请求

@RestController:
书写到类上,代表该类中所有控制单元方法均是ajax响应

@JsonFormat:
处理响应时间格式/时区

@RequestBody :
处理ajax必须为post

@CrossOrigin :
解决ajax请求之间的跨域问题
MVC注解补充

相关文章: