在Spring RESTful服务中生产和使用自定义JSON对象

在Spring RESTful服务中生产和使用自定义JSON对象,第1张

在Spring RESTful服务中生产和使用自定义JSON对象

我认为使用杰克逊图书馆,您可以执行以下 *** 作。

@RequestMapping(value = "/getjson", method = RequestMethod.GET, produces="application/json")@ResponseBodypublic String getJson() {   //your logic    ObjectMapper mapper = new ObjectMapper();    return mapper.writevalueAsString(json);}@RequestMapping(value = "/post", method = RequestMethod.POST, produces="application/json", consumes="application/json")@ResponseBodypublic String post(@RequestBody String json) {    POJO pj = new POJO();    ObjectMapper mapper = new ObjectMapper();    pj = mapper.readValue(json, POJO.class);    //do some things with json, put some header information in json    return mapper.writevalueAsString(pj);}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5560402.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存