我想在post mapping中发送路径变量,在邮递员软件中。我选择post mapping body然后怎么办?我检查了 @RequestParam 与@PathVariable 示例,get 方法的所有答案,但我需要 post 方法的答案。
@RestController
@RequestMapping("api/v1/customers")
public class CustomerController {
@PostMapping("/{code}")
public String postRequest(@PathVariable String code,@RequestBody CustomerDTO dto){
System.out.println(dto);
System.out.println(code);
return "Something";
}
}
原文由 Dumidu Udayanga 发布,翻译遵循 CC BY-SA 4.0 许可协议
选择 post -> 添加 url -> 选择 body -> 选择 raw -> 选择 JSON(application/json) -> 添加你的 json 数据 -> 点击发送