I started to read this tutorial: spring boot tutorial
In this I read that under model module they implemented POJOs and Repository interfaces. -> tutorial on github
In Repository interfaces I found two methods without implementations: findByUsername, findByAccountUsername.
My questions are:
- How does it work when those methods in repository interfaces have no implementations and those are not inherited from any super class?
- Does it work with name conventions and reflections?
- Does Spring Data has inmemory database to work with?