'Sort(org.springframework.data.domain.Sort.Direction, java.util.List<java.lang.String>)' has private access in 'org.springframework.data.domain.Sort'
Springboot2.2.1以上的版本包括它的Sort已经不能实例化了即不能使用new来构造对象了。
可以选择使用Sort.by()方法来实例化:
Sort.by(Sort.Direction.DESC,"avgscore")