我想和泽西一起送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。 POSTMAN收到200但不是我的JSON。 如果有人可以帮助我。 THX。
答案 0 :(得分:2)
我找到了解决方案: 我的函数将dbCollection解析为List&lt;&gt;
public static List<Role> getAll(){
Gson gson = new Gson();
List<Role> toReturn = new ArrayList<Role>();
DBCollection coll = Db.databse.getCollection("Roles");
DBCursor cursor = coll.find();
try {
while(cursor.hasNext()) {
System.out.print(cursor.next());
Role r = gson.fromJson(cursor.next().toString(),Role.class);
toReturn.add(r);
}
} finally {
cursor.close();
}
return toReturn;
}
我返回List&lt;&gt;的功能对json的回应:
@GET
@Path("/")
public Response getAll(){
List<Role> roleList = new ArrayList<Role>();
roleList = Role.getAll();
String json = new Gson().toJson(roleList);
return Response.status(200).entity(json).build();
}
希望这对世界上的某些人有所帮助。