如何将 OrderBy 与 GreaterThan Spring JPA 一起使用

2022-09-02 23:54:48

我想在我的存储库界面中添加一个方法,该方法查找大于值的所有数据,并以递减方式对其进行排序:long publishdata

我试过这个,但它似乎不起作用:

@Repository
public interface NoticiaRepository extends CrudRepository<Noticia,Long>{

    Noticia findById(long id);
    List<Noticia> findByOrderPublishdateGreaterThanDesc(long publishdate);

}

答案 1
List<Noticia> findByPublishdateGreaterThanOrderByPublishdateDesc(Long publishdate)

答案 2

推荐