我在MongoDB的规范化数据模型结构中遇到以下错误:
org.bson.codecs.configuration.CodecConfigurationException: Can't find a codec for class com.mongodb.DBRef
这是由这一行引起的:
System.out.println(document.toJson());
特别是toJson()
部分。我的文档中有一个DBRef对象,所以我可以从另一个Collection中引用一个Document。嵌入式文档结构不是选项。那么我该如何解决这个问题?
答案 0 :(得分:2)
你必须导入DBRef Codec才能打印它,如果你想要它以文件json样式,你需要为DBRef编写自己的Codec并将它添加到你给json()的codecregistry。
e.g。
CodecRegistry codecRegistry = CodecRegistries.fromRegistries(MongoClient.getDefaultCodecRegistry());
-------
final DocumentCodec codec = new DocumentCodec(codecRegistry, new BsonTypeClassMap());
-------
System.out.println(document.toJson(codec));
答案 1 :(得分:0)
由于这是在google中搜索错误时的第一个结果,并且可接受的答案中的解决方案似乎不那么直接,而且由于MongoClient不再具有getDefaultCodecRegistry()而不再可行,因此,我将发布是什么帮助了我:
protected MongoCollection<Document> collection;
private final CodecRegistry DEFAULT_REGISTRY = CodecRegistries.fromProviders(
asList(new ValueCodecProvider(),
new BsonValueCodecProvider(),
new DocumentCodecProvider(),
new DBRefCodecProvider(),
new DBObjectCodecProvider(),
new BsonValueCodecProvider(),
new GeoJsonCodecProvider(),
new GridFSFileCodecProvider()));
private final BsonTypeClassMap DEFAULT_BSON_TYPE_CLASS_MAP = new BsonTypeClassMap();
private final DocumentCodec documentCodec = new DocumentCodec(
DEFAULT_REGISTRY,
DEFAULT_BSON_TYPE_CLASS_MAP
);
-----------------------------------------------------------------------
JsonWriterSettings writerSettings = org.bson.json.JsonWriterSettings.
builder().
outputMode(JsonMode.SHELL).
indent(true)
.build();
JsonArray jsonArray = new JsonArray();
collection.
find().
iterator().
forEachRemaining(entry -> jsonArray.add(new JsonParser().parse(entry.toJson(writerSettings, documentCodec)).getAsJsonObject()));
解决方案来自这里:https://github.com/akitoshka/debezium/commit/8dd12d76acced74de7ab184bc18a4384565a70b7