Order By Date ASC with Spring Data

前端 未结 4 1390
无人及你
无人及你 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:22

    I don't think you can use findAll as a prefix.

    Regarding the query, select * is not valid JPQL. It should be

    select foo from Foo foo order by foo.date desc
    

提交回复
热议问题