1、实例化 Spring 容器示例

问题

 使用 ApplicationContext 的方式实例化 Spring 容器 。

方案

 使用ApplicationContext 的方式实例化 Spring 容器的核心代码如下
Spring 容器实例化

步骤

步骤一:新建工程、导入 jar 包
新建名为 SpringIoc_Day01_Part1 的 web 工程,该工程导入如同所示的 5 个 Spring 相关 jar 包
Spring 容器实例化_第1张图片
步骤二:新建 Spring 配置文件
新建Spring 配置文件 applicationContext.xml 。 该文件名 Spring 默认的配置文件名,也可以自由定义名称如图所示
Spring 容器实例化_第2张图片
applicationContext.xml 文件中的代码如下所示
Spring 容器实例化_第3张图片
步骤三:新建类 Test1
导入 JUnit4,用于软件的单元测试
新建类TestCase , 在类中使用 ApplicationContext 的方式实例化 Spring 容器。
Spring 容器实例化_第4张图片
在TestCase 类中添加测试方法 testInitContext() ,代码如图
Spring 容器实例化_第5张图片
步骤四:运行 testInitContext() 方法
运行 testInitContext() 方法,控制输出结果如图,说明实例化 Spring 容器成功
Spring 容器实例化_第6张图片