我想用泽西岛发送 Json。我使用 mongoDb。
我返回对象的功能:
public static List<DBObject> getAll(){
List<DBObject> toReturn = new ArrayList<DBObject>();
DBCollection coll = Db.databse.getCollection("Roles");
DBCursor cursor = coll.find();
try {
while(cursor.hasNext()) {
toReturn.add(cursor.next());
}
} finally {
cursor.close();
}
return toReturn;
}
我的球衣方法返回 json :
@GET
@Path("/")
@Produces(MediaType.APPLICATION_JSON)
public Response getAll(){
return Response.status(200).entity(Role.getAll()).build();
}
我使用邮递员。POSTMAN 收到 200 但不是我的 JSON。如果有人可以帮助我。谢谢。