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
I know I'm a little late to the game but..
Another fix would be to correct the syntax on your named query in your repository.
You have: Iterable
When it should be: Page
Note the addition of the By
keyword after findAll
. This marks the beginning of your filtering statements.