Điều này hoạt động đối với trường hợp lớp POJO như sau:
public class User {
private String id;
private String firstName;
private String lastName;
// constructors (including default), get/set methods, etc.
}
Và, các tài liệu được lưu trữ trong bộ sưu tập user
như, ví dụ:
{ "_id" : ObjectId("604827bf8187ce707fb88681"), "firstName" : "John", "lastName" : "Doe", "_class" : "com.example.demo.User" }
Kho lưu trữ với phương thức tìm nạp các đối tượng với danh sách id được cung cấp:
public interface UserRepository extends MongoRepository<User, String> {
@Aggregation(pipeline = { " { '$match': { '_id': { '$in': ?0 } } }" } )
List<User> findByIdsIn(List<String> ids);
}
Lệnh gọi phương thức kho lưu trữ:
List<String> inputIds = Arrays.asList("604827d13de5773133374acc", "604827617a40155f5111b9ff");
List<User> outputList = userRepository.findByIdsIn(inputIds);
outputList
có hai tài liệu khớp với id từ biến inputIds
.