MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Antwort mongodb objectDB in Jersey API-REST

Hier ist eine Möglichkeit, wie Sie Ihr Problem lösen können, ohne den Mapper erstellen zu müssen, und als Nebeneffekt haben Sie die vollständige Kontrolle über die Antwort:

@POST   
@Path("/{sensor_id: [0-9]+}/data")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Response getSensorsDataById(@PathParam("domain_name") ... ) {
    ...
    List<DBObject> fields = Lists.newArrayList(output.results());
    JSONArray json = new JSONArray();
    for (DBObject field : fields) {
        JSONObject joField = new JSONObject(field.toString());
        json.put(joField);
    }

    return Response.ok().entity(json.toString()).build();
}