Jackson JSON 字符串映射
Jackson JSON mapping of Strings
我使用 POJO 作为 @RequestBody 参数,它们工作正常。但是现在我尝试这样 public void func(@RequestBody String s)
并且无法将值传递给 String s。当我使用 POJO 时,我在请求中写了 {"attribute" : "value"} ,问题是我应该在 POSTMAN 中写什么来传递值?
如果你只想发送字符串值,那么最好使用@RequestParam,在邮递员客户端中你可以发送键值参数。
public String method(@RequestParam("key") String value){
}
我使用 POJO 作为 @RequestBody 参数,它们工作正常。但是现在我尝试这样 public void func(@RequestBody String s)
并且无法将值传递给 String s。当我使用 POJO 时,我在请求中写了 {"attribute" : "value"} ,问题是我应该在 POSTMAN 中写什么来传递值?
如果你只想发送字符串值,那么最好使用@RequestParam,在邮递员客户端中你可以发送键值参数。
public String method(@RequestParam("key") String value){
}