I\'m trying to migrate existing Spring project to Spring Boot. In project already used Spring Data JPA/Hibernate and simple DAO with JDBC (PostgreSQL used). In few states I foun
Problem solved: I fixed the dependency issues. Should use,
@Configuration @EnableAutoConfiguration @ComponentScan @Import(Config.class)
instead @SpringBootApplication annotation. Now the application is getting booted, but cannot find config file which is another story.
@SpringBootApplication