路径参数
@PathVariable
: 从URL路径中获取参数值。
请求体参数
用于接收HTTP请求的JSON或XML等体。
混合参数
post请求,方法入参@RequestParam跟在URL上,@RequestBody跟在请求体上
@RequestParam(required = false): 这个属性告诉Spring MVC框架,请求中不必提供这个参数。如果请求中没有提供这个参数,Spring会将参数值设置为null(对于引用类型)或者Java类型的默认值(对于原始数据类型,比如int为0,boolean为false等)。这样的设置使得在方法中处理这个参数时不会因为缺少参数而引发错误。
@PostMapping("/example/{id}")
public String exampleMethod(@PathVariable Long id,
@RequestParam String name,
@RequestBody RequestObject requestObject,
@RequestHeader("Authorization") String authToken) {
// 方法体
}
id
参数使用@PathVariable
从URL路径中获取,
name
参数使用@RequestParam
从请求参数中获取,
requestObject
参数使用@RequestBody
从请求体中获取,
authToken
参数使用@RequestHeader
从请求头中获取。