Đối số thứ hai của phương thức find là kiểu kết quả. Hãy thử như bên dưới.
FindIterable<TDocType> tDocTypeList = dbCollection.find(filter, TDocType.class);
Cập nhật cho phép chiếu
FindIterable<TDocType> tDocTypeList = dbCollection.find(filter, TDocType.class).projection(outputQuery);
Cập nhật cho các bộ lọc bổ sung
List<Bson> filters = new ArrayList<>();
for (Map.Entry<String, Object> entry : query.getParams().entrySet()) {
// this is where its building the query
if (some condition){
filters.add(Filters.eq(entry.getKey(), entry.getValue()));
}
if (some other condition){
filters.add(Filters.in(entry.getKey(), query.getValues()));
}
}
FindIterable<TDocType> docType = dbCollection.find(Filters.and(filters));