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 foo from Foo foo order by foo.date desc
Try to add "By" between "All" and "Order" like this:
List<Foo> findAllByOrderByDateAsc();
Example :
databaseDAO.findByUserNameOrderByCreatedDateDesc(username);
to list out users based on username and sortby created date.
@Repository
public interface DatabaseDAO extends JpaRepository<User,Integer> {
public List<RecentlyView> findByUserNameOrderByCreatedDateDesc(String username);
}
date
is reserved word in SQL. Try changing the table property to foo_date
, for example and rewrite your query as SELECT * FROM foo ORDER BY foo_date DESC