I\'m having trouble with my first steps using Spring-Boot with JPA. I\'ve started with a pretty minimalistic example from Git using Gradle.
Now simply moving
Giving same package location (i.e base package) for below annotation worked for me :-
@SpringBootApplication(scanBasePackages = {"org.ashu.java.*"}) @EnableJpaRepositories(basePackages ={ "org.ashu.java.*"}) @EntityScan(basePackages ={ "org.ashu.java.*"})