SpringBoot项目中:使用Spring-Data-Jpa创建Sort()对象和PageRequest()遇到问题。【解决办法】

2022-12-01 14:23:05 浏览数 (1)

❌错误展示:

在使用Spring-Data-JPA时,创建Sort()对象和PageRequest()出现如下错误:

‘Sort(org.springframework.data.domain.Sort.Direction, java.util.List<java.lang.String>)’ has private access in ‘org.springframework.data.domain.Sort’

‘PageRequest(int, int, org.springframework.data.domain.Sort)’ has protected access in ‘org.springframework.data.domain.PageRequest’

解决办法:

springboot2.2.1(含)以上的版本Sort已经不能再实例化了,构造方法已经是私有的了!

代码语言:javascript复制
'Sort(org.springframework.data.domain.Sort.Direction, java.util.List<java.lang.String>)'
 has private access in 'org.springframework.data.domain.Sort'

改用Sort.by()获得Sort对象

代码语言:javascript复制
   Sort sort= Sort.by(Sort.Direction.DESC,"xxxxxx");

改用PageRequest.of()获得Pageable 对象

代码语言:javascript复制
  Pageable pageable= PageRequest.of(0, size, sort);
代码语言:javascript复制
    @Override
    public List<Type> listTypeTop(Integer size) {
        Sort sort= Sort.by(Sort.Direction.DESC,"xxxxxxxxx");
        Pageable pageable= PageRequest.of(0, size, sort);
        return typeDao.findTop(pageable);
    }

0 人点赞