其实,在Spring内部,把带上了@Configuration的配置类称之为Full配置类,把没有带上@Configuration,但是带上了@Component @ComponentScan @Import @ImportResource等注解的配置类称之为Lite配置类。
---------------------
这部分不太准确,应该是@Configuration但是proxyBeanMethods为false 或者 不带@Configuration注解,但是带上了@Component @ComponentScan @Import @ImportResource等注解的配置类称之为Lite配置类。
Spring中你可能不知道的事(二)在上一节中,我介绍了Spring中极为重要的BeanPostProcessor BeanFactoryPostProcessor Import ImportSelector,...