@ComponentScan:
会自动扫描指定包下的全部标有@Component的类,并注册成bean,当然包括@Component下的子注解@Service,@Controller,@Configuration等
@EntityScan:
会自动扫描指定包下的全部标有@Entity的类
@EnableJpaRepositories:
会自动扫描指定包下的全部标有@Repository的类
会自动扫描指定包下的全部标有@Component的类,并注册成bean,当然包括@Component下的子注解@Service,@Controller,@Configuration等
会自动扫描指定包下的全部标有@Entity的类
会自动扫描指定包下的全部标有@Repository的类