Order By Date ASC with Spring Data

前端 未结 4 1403
无人及你
无人及你 2021-02-06 21:10

I try to make an application with Spring-Data-JPA on a table in order by ASC but it gives me an error:

Invalid derived query! No property asc found for type java         


        
4条回答
  •  南笙
    南笙 (楼主)
    2021-02-06 21:35

    Try to add "By" between "All" and "Order" like this:

    List findAllByOrderByDateAsc();
    

提交回复
热议问题