Anybody know why it doesn\'t work?
Error starting ApplicationContext. To display the auto-configuration report re-run your application with \'debug\' enabled
I solved it by adding 2 annotations
@EnableAutoConfiguration @EntityScan(basePackages = { "com.wt.rds" })
and my dependency was in gradle
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version: '2.0.4.RELEASE'