I\'m trying to learn Spring on my own, and I\'m planning to do that by creating a blog web app. I already have the basic blog functionality working, which is a page to display b
May be my answer is stupid but did you try just "from Post order by id desc" instead of "select p from Post p order by p.id desc"
"from Post order by id desc"
"select p from Post p order by p.id desc"