gpt4 book ai didi

mongodb - org.bson.codecs.configuration.CodecConfigurationException : Can't find a codec for class org. springframework.data.mongodb.core.query.GeoCommand

转载 作者:可可西里 更新时间:2023-11-01 10:46:36 27 4
gpt4 key购买 nike

我正在使用如下聚合:

    final List<AggregationOperation> aggregations = new ArrayList<>();
Polygon polygon = new Polygon(new Point(-26.28125, 42.19231862526141), new Point(100.28125, 64.7157757187955),
new Point(100.28125, 42.19231862526141), new Point(-26.28125, 64.7157757187955));
AggregationOperation match = new MatchOperation(Criteria.where("location").within(polygon));
aggregationOperations.add(match);
aggregations.add(project("_id", "location","distance",User.COLLECTION_NAME)
.and("$geoHash").substring(0,slice).as("geo"));
aggregations.add(group("geo").count().as("count")
.avg("location.lng").as("lon")
.avg("location.lat").as("lat")
.first(User.COLLECTION_NAME).as(User.COLLECTION_NAME));
final Aggregation aggregation = newAggregation(aggregations);
AggregationResults<ClusteredLocation> groupResults =
mongoTemplate.aggregate(aggregation, UserLocation.COLLECTION_NAME, ClusteredLocation.class);
return groupResults.getMappedResults();

正在创建的聚合如下:{ “聚合”:“集合”,“管道”:[ { “$match”:{ “位置”:{ “$geoWithin”:{ “$java”:org.springframework.data。 mongodb.core.query.GeoCommand@d502fd15 } } } }, { "$lookup": { "from": "users", "localField": "_id", "foreignField": "_id", "as": "用户”}},{“$project”:{“_id”:1,“位置”:1,“距离”:1,“用户”:1,“geo”:{“$substr”:[“$geoHash ", 0, 3] } } }, { "$group": { "_id": "$geo", "count": { "$sum": 1 }, "lon": { "$avg": "$location.lng"}, "lat": { "$avg": "$location.lat"}, "users": { "$first": "$users"} } } ] }

异常如下:

org.bson.codecs.configuration.CodecConfigurationException:找不到类 org.springframework.data.mongodb.core.query.GeoCommand 的编解码器。

我在匹配操作中做错了什么吗?

最佳答案

您可以通过使用 TypedAggregation 或明确提供输入类型来解决此问题。这两种策略都在模板中强制执行查询映射。

TypedAggregation agg = newAggregation(UserLocation.class, aggregations);
mongoTemplate.aggregate(agg, COLLECTION_NAME, ClusteredLocation.class);

// or

Aggregation agg = newAggregation(aggregations);
mongoTemplate.aggregate(agg, UserLocation.class, COLLECTION_NAME, ClusteredLocation.class);

关于mongodb - org.bson.codecs.configuration.CodecConfigurationException : Can't find a codec for class org. springframework.data.mongodb.core.query.GeoCommand,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50474452/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com