私はDocumentFileVersion
を行うための基準があり、私の春データ/ MongoDBのアプリケーション春データ - @TextIndexed - 除外プロパティ
@Document
public class DocumentFile {
@Id
private String id;
@TextIndexed
private List<DocumentFileVersion> documentFileVersions;
...
}
に、次の書類を持っています。このクラスは、次のようになります。
public class DocumentFileVersion {
private String filePath; // contains project name
...
}
DocumentFile
sがプロジェクトに含まれています。 私の問題は、今私は、プロジェクト名を検索する場合、彼らがフィールドに含まプロジェクト名を持っているので、またDocumentFile
のが発見されていることであるDocumentFile#DocumentFileVersions#filePath
からフィールドfilePath
を除外する可能性がある場合は私の質問は今だろう@TextIndexed
?