一、接收请求参数
@RequestParm
1、起别名
2、问号传值
3、完成映射(集合)
@PathVariable
斜杠 路径传值
@RequestBody
json参数传值
二、时间日期参数
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
设置日期格式
三、Restful
@PostMapping 添加
@DeleteMapping 删除
@PutMapping 修改
@GetMapping 查询
标签:请求,SpringMVC,参数,接收,Restful,传值 From: https://www.cnblogs.com/Rover20230226/p/17430739.html