JAVA使用MongoDB的Query,添加排序
之前搜索的方法是,使用:query.with(new Sort(Sort.Direction.DESC,"version"));但是,报错:'Sort(org.springframework.data.domain.Sort.Direction, java.util.List<java.lang.String>)' has private access in 'org.springfr
·
之前搜索的方法是,使用:
query.with(new Sort(Sort.Direction.DESC,"version"));
但是,报错:
'Sort(org.springframework.data.domain.Sort.Direction, java.util.List<java.lang.String>)' has private access in 'org.springframework.data.domain.Sort'
Sort的使用应修改为:
query.with(Sort.by(Sort.Direction.DESC,"version"));
更多推荐
已为社区贡献1条内容
所有评论(0)