其實(shí),在Spring內(nèi)部,把帶上了@Configuration的配置類稱之為Full配置類,把沒有帶上@Configuration,但是帶上了@Component @ComponentScan @Import @ImportResource等注解的配置類稱之為Lite配置類。
---------------------
這部分不太準(zhǔn)確,應(yīng)該是@Configuration但是proxyBeanMethods為false 或者 不帶@Configuration注解,但是帶上了@Component @ComponentScan @Import @ImportResource等注解的配置類稱之為Lite配置類。
Spring中你可能不知道的事(二)在上一節(jié)中,我介紹了Spring中極為重要的BeanPostProcessor BeanFactoryPostProcessor Import ImportSelector,...