尝试使用基于字符串大小的MongoTemplate检索数据,看到了这篇文章和其他几篇String field value length in mongoDB
关于{$where: "(mopt.length > 5)"}
如何将其与MongoTemplate一起使用?
Query query = new Query();
query.with(new Sort(Sort.Direction.ASC, "mopt"));
query.fields().include("mopt");
// add here mopt.length > 5
List<Mopt> mopts = mongoTemplate.find(query, Mopt.class);