java - 如何使用 MongoTemplate 将 Mongo Shell 脚本转换为 Java?

标签 java mongodb spring-boot mongotemplate mongorepository

我的 Mongo Shell 脚本:

db.getCollection('order').aggregate([
  { $match: { clientId: "test@gmail.com" } },
  { $lookup: { from: 'ordereddevice', localField: 'id', foreignField: 'order', as: 'orderedDevices' } }
])

我使用的是这样的:

MongoClientURI connectionString = new MongoClientURI("mongodb://localhost:27017");
MongoClient mongoClient = new MongoClient(connectionString);
MongoDatabase database = mongoClient.getDatabase("db_name");
MongoCollection < Document > collection = database.getCollection("order");
List < Document > pipeline = Arrays.asList(new Document().append("$match", new Document().append("clientId", "test@gmail.com")), new Document().append("$lookup", new Document().append("from", "ordereddevice").append("localField", "id").append("foreignField", "order").append("as", "orderedDevices")));
Block < Document > printBlock = new Block < Document > () {
    @Override public void apply(final Document document) {
        System.out.println(document.get("_id"));
    }
};
collection.aggregate(pipeline).forEach(printBlock);

但是它会重新连接 MongoDB,所以我正在寻找一种使用 MongoTemplate 来做到这一点的方法

最佳答案

谢谢你的文档,自己完成吧!哈哈

    @Autowired
    MongoTemplate mongoTemplate;

    @Override
    public List<OrderedDeviceByOrderId> findOrderedDeviceByOrderId(String clientid) {
        AggregationOperation lookup = Aggregation.lookup("ordereddevice","_id","order","Devices");
        AggregationOperation match = Aggregation.match(Criteria.where("clientId").is(clientid));
        Aggregation agg = Aggregation.newAggregation(match, lookup);

        AggregationResults<OrderedDeviceByOrderId> results = mongoTemplate.aggregate(agg, "order", OrderedDeviceByOrderId.class);
        List<OrderedDeviceByOrderId> orderedDeviceByOrderId = results.getMappedResults();

        orderedDeviceByOrderId.forEach(s -> System.out.println(s));
        return orderedDeviceByOrderId;
    }

关于java - 如何使用 MongoTemplate 将 Mongo Shell 脚本转换为 Java?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59840314/

相关文章:

java - 使用Java可搜索的行级加密?

mysql - 哪种类型的数据库适合这种工作负载?

node.js - 使用 NodeJS 查询 MongoDB 时出现问题

java - Hibernate JCache 5.4.3.Final 不适用于 JCache 5.4.2.Final 配置

spring-boot - 在 Spring Boot 应用程序中启动 Spring Batch Job 问题

java - Arrays.contains(int) 错误

用于测试类的 Java Bean

java - Groovy GroupBy 变量键集

javascript - NodeJS MongoDB 投影不工作

java - 将Spring Boot与Elastic搜索集成的最佳方法