The EntityScan class has removed from SpringBoot 1.5.0-SNAPSHOT, When i change to 1.3.0-SNAPSHOT version, EntityScan exist.
i must add another dependancy to use EntityScan with SpringBoot 1.5.0-SNAPSHOT ?
The EntityScan class has removed from SpringBoot 1.5.0-SNAPSHOT, When i change to 1.3.0-SNAPSHOT version, EntityScan exist.
i must add another dependancy to use EntityScan with SpringBoot 1.5.0-SNAPSHOT ?
Please read the release notes: https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-1.4-Release-Notes#entityscan :
The
@org.springframework.boot.orm.jpa.EntityScan
annotation has been deprecated and should be replaced with@org.springframework.boot.autoconfigure.domain.EntityScan
or explicit configuration.