可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
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.util.Calendar
Why ?
List<Foo> findAllOrderByDateAsc();
or
@Query("SELECT * FROM foo ORDER BY date ASC") List<Foo> findAllOrderByDateAsc();
回答1:
Try to add "By" between "All" and "Order" like this:
List<Foo> findAllByOrderByDateAsc();
回答2:
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
回答3:
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