当前位置:   article > 正文

readString can only be called when CurrentBSONType is STRING, not when CurrentBSONType is INT32.;_readstartdocument can only be called when currentb

readstartdocument can only be called when currentbsontype is document, not w

mongodb去重查询的时候报这个问题

报错的代码:

  1. List<String> certificateYear = mongoTemplate.findDistinct(query, "certificateYear",
  2. UserCertificatePrintRecordVo.class,
  3. Integer.class);

这是对certificateYear进行去重查询。

解决方法:

返回值改为List<Integer>

原因:

findDistinct()四个参数,第二个的对那个字段进行去重查询。第四个参数是这个方法的返回值类型。一般第二个参数是啥类型,这里就写啥类型。

相当于对一张表中的年字段(certificateYear)进行去重查询,返回的就是2020,2021。certificateYear是Integer类型。所以把List<String>改为List<Integer>即可。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/140822
推荐阅读
  

闽ICP备14008679号