我有一个api,应该可以像这样使用: curl'http://localhost:8080/api/bla'--data'{“ comment”:“ something”}'。
因此,我创建了一个发布端点,例如:
@RequestMapping(value = "/bla", produces = { "application/json" },
method = RequestMethod.POST)
public ResponseEntity<Token> getBla(@RequestParam String comment){}
但是出现错误必需的字符串参数'comment'不存在 我还尝试添加
@RequestParam(value="comment", required=true) String comment
,具有相同的错误。 您能帮我告诉这里有什么问题吗?