Spring-component-scan源码探讨
前言在Spring配置文件中,可通过context:component-scan元素,指定包路径,Spring在创建容器时会扫描有注解@Component、@Repository、@Service、@Controller的类并注册bean到容器中,常见的用法:<context:component-scan base-package="com.course.dao,com.cours...