@ResponseBody
返回
[{"id":1010,"name":"projectname2"}]
输入json string
但我需要一个跟随json字符串
[{"id":1010,"name":"projectname2","age":"21"}]
那么如何将attrribute与默认的genarated json字符串联系起来呢?
我使用带有spring-json jar的java spring-mvc框架
@RequestMapping(value = "/projectsByEmployeeId/list", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
@ResponseBody
public List<Project> getProjectsByEmployeeId(
HttpServletRequest request) {
String filter = request.getParameter("filter");
FilterAttributes[] filterAttributes = null;
try {
filterAttributes = new ObjectMapper().readValue(filter,
FilterAttributes[].class);
} catch (Exception exception) {
logger.error("Filtering parameter JSON string passing failed",
exception);
}
if ((filterAttributes != null)
&& (!filterAttributes[0].getStringValue().isEmpty())) {
return utilityService.getProjectsByEmployeeId(44L);//this is an example id
} else {
return utilityService.getProjects();
}
}
答案 0 :(得分:0)
另一种实现此目的的方法(你说你现在正在使用JSONObject,而JSONObjects不是默认库)
拿字符串,
[{"id":1010,"name":"projectname2"}]
并将其转换为JSONObject。
转换后,您可以使用JSONObject.append()向其附加值为“21”的密钥“age”。
答案 1 :(得分:0)
实现此目的的另一种方法是纯字符串操作 -
String json = "[{\"id\":1010,\"name\":\"projectname2\"}]";
json = json.substring(0, json.length() - 2); //strip the }]
String newJSON = json.concat(",\"age\": 21}]"); // add in the new key and end
System.out.println(newJSON); // [{"id":1010,"name":"projectname2","age": 21}]