0
我需要讀取包含豆類(ChildDocument)的列表文件(不是parentDocument)。而這些豆類,我只需要一個特定的字段轉換(內容)更改值。 它僅用於讀取mongoDb並加載bean,而不是存儲在mongodb中的修改。彈簧數據MongoDB的轉換器不工作
例如:
@Document(collection = "parent")
class ParentDocument {
@Id
String id;
List<ChildDocument> children;
}
@Document
class ChildDocument {
@Id
String id;
// Modify the content reading in the database before storing the result in the java bean
String content;
}
我嘗試在ChildDocument使用轉換器,但它不工作,因爲轉換器不用於像ChildDocument嵌入文檔(我想?)。
有人能幫助我,有一個乾淨的解決方案做到這一點?
感謝
你能證明一下,你到目前爲止試過的嗎? –