Okay, I know that there are many questions asked around the same topic. But I cant seem to make anything work. It also might be the case that I am yet to completely understa
I think your application is not able to scan the UserRepository
class, If you are using Spring Boot then you should put the main class on top of your package hierarchy.
You should also use @EnableJpaRepositories
and tell it the base package of your repos to enable the repository functionality
@EnableJpaRepositories(basePackages ={"com.springBoot.usl.repo"})