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
I don't think you can use findAll as a prefix.
Regarding the query, select * is not valid JPQL. It should be
select *
select foo from Foo foo order by foo.date desc