引言: 在刚开始我们接触IOC时,我们加载并启用SpringIOC是通过如下代码手动加载 applicationContext.xml 文件,new出context对象,完成Bean的创建和属性的注入. public class TestIOC { @Test public void testUser() { // 1.加载Spring配置文件,创建对象 ApplicationContext context = new ClassPathXmlApplicationContext("/sprin…