文章目录
@RestController
在Spring中@RestController的作用等同于@Controller + @ResponseBody
@Controller
表明这个类是一个控制器类
@RequestMapping("/api/v1/user")
指明处理器可以处理哪些URL请求
@ResponseBody
表示方法的返回值直接以指定的格式写入Http response body中,而不是解析为跳转路径。
@Autowired(required = false)
@Mapping
@GetMapping,处理get请求
@PostMapping,处理post请求
@PutMapping,处理put请求
@DeleteMapping,处理delete请求