我想在下面返回JSON。
{“姓名”:“杰基”}
Postman 给我报错了。
意外的“n”
新到春 Boot 这里。1天大。有没有一个适当的方法来做到这一点?
// POST method here
@RequestMapping(method = RequestMethod.POST , produces = "application/json")
ResponseEntity<?> addTopic(@RequestBody Topic topic) {
if (Util.save(topicRepository, new Topic(topic.getTopicName(), topic.getQuestionCount())) != null) {
return Util.createResponseEntity("Name : jackie", HttpStatus.CREATED);
}
return Util.createResponseEntity("Error creating resource", HttpStatus.BAD_REQUEST);
}
4条答案
按热度按时间tzdcorbm1#
创建模型并在模型中存储值,然后从控制器返回模型.检查下面的代码.
gcxthw6b2#
试着用object来 Package 你的回答。
控制器可以是这样的:
dffbzjpn3#
iovurdzv4#
这是我使用的: