记录一个@Postmapping和@RequestParam的坑
我们在开发中经常会用到@PostMapping、@GetMapping、@RequestParam、@RequestBody、@PathVariable;但是我们得注意使用情况:@GetMapping 配合 @RequestParam、@RequestBody、@PathVariable;@PostMapping 配合 @RequestBody (使用@RequestParam很有可能debug失
·
我们在开发中经常会用到 @PostMapping、@GetMapping、@RequestParam、@RequestBody、@PathVariable;
但是我们得注意使用情况:
@GetMapping 配合 @RequestParam、@RequestBody、@PathVariable;
@PostMapping 配合 @RequestBody (使用@RequestParam很有可能debug失效或者获取不到参数数据)
@RequestParam:对包装类,基本类型,String等通过属性value指定参数名
@RequestBody:对对象,Map,List等直接使用
@PathVariable:配合属性value使用,来匹配url中的占位符
更多推荐
已为社区贡献5条内容
所有评论(0)