我使用mongo-driver 3.2.2从Spring Boot应用程序连接到MongoDB。
public List<Document> getNodes() {
return mongoDatabase.getCollection("nodes").find().into(new ArrayList<Document>());
}
...
@RequestMapping("/nodes")
public List<Document> nodes(HttpServletResponse response) {
return mongoRepository.getNodes();
}
目前,我的API会将_id
作为对象返回:
"_id":{"timestamp":1486646209,"machineIdentifier":14826340,"processIdentifier":16048,"counter":2373754,"time":1486646209000,"date":1486646209000,"timeSecond":1486646209}
但我需要它们作为十六进制字符串。有什么办法可以操纵序列化来实现这个目的吗?我没有使用实体类。
答案 0 :(得分:0)
是的,当然。使用此代码段:
ObjectId objectId = new ObjectId(); // somehow got it
String stringValue = objectId.toHexString();
// And vice versa
ObjectId restoredObjectId = new ObjectId(stringValue);