是否可以在Spring Data MongoDB中排除嵌套文档的字段?
如果用
尝试过query.fields().exclude("user.password");
但是以空洞用户文档结尾的情况除外。
答案 0 :(得分:0)
您可以使用here和Aggregation来实现。
ProjectionOperation projectionOperation = project().andExclude("user.password");
mongoTemplate.aggregate(Aggregation.newAggregation(projectionOperation);