我想在我的Repository接口中添加一个方法,该方法可以找到大于long publishdata值的所有数据并将其Decreacingly命令:
我尝试过这个,但它似乎没有起作用:
@Repository public interface NoticiaRepository extends CrudRepository<Noticia,Long>{ Noticia findById(long id); List<Noticia> findByOrderPublishdateGreaterThanDesc(long publishdate); }
解决方法
List<Noticia> findByPublishdateGreaterThanOrderByPublishdateDesc(Long publishdate)