1、实例化 Spring 容器示例
问题
使用 ApplicationContext 的方式实例化 Spring 容器 。
方案
使用ApplicationContext 的方式实例化 Spring 容器的核心代码如下
步骤
步骤一:新建工程、导入 jar 包
新建名为 SpringIoc_Day01_Part1 的 web 工程,该工程导入如同所示的 5 个 Spring 相关 jar 包
步骤二:新建 Spring 配置文件
新建Spring 配置文件 applicationContext.xml 。 该文件名 Spring 默认的配置文件名,也可以自由定义名称如图所示
applicationContext.xml 文件中的代码如下所示
步骤三:新建类 Test1
导入 JUnit4,用于软件的单元测试
新建类TestCase , 在类中使用 ApplicationContext 的方式实例化 Spring 容器。
在TestCase 类中添加测试方法 testInitContext() ,代码如图
步骤四:运行 testInitContext() 方法
运行 testInitContext() 方法,控制输出结果如图,说明实例化 Spring 容器成功
原文地址:http://blog.51cto.com/11912463/2082619
时间: 2024-11-09 13:24:28