Spring中提供了基于注解来配置bean的容器,即AnnotationConfigApplicationContext 1. 开始 先看看在Spring家族中,AnnotationConfigApplicationContext在一个什么样的地位,看看继承图 可以看到Spring提供了基于Xml配置的容器之外,还提供了基于注解和Groovy的容器,今天我们来看看基于注解配置的容器 2. 方法窥探 看看AnnotationConfigApplicationContext中提供了哪些方法 3. 从…