Spring ClassPathXmlApplicationContext类:创建容器
ClassPathXmlApplicationContext 类位于 org.springframework.context.support 包中,它是 ApplicationContext 接口的实现类之一,从当前类路径中检索配置文件并装载它来创建容器的示例。
语法1:
ClassPathXmlApplicationContext(String configLocation)
参数说明:- configLocation:是 Spring 配置文件的路径和名称。
示例
使用指定的配置文件名创建一个 ClassPathXmlApplicationContext 类的容器对象。ClassPathXmlApplicationContext context; context = new ClassPathXmlApplicationContext("appContext.xml");
语法2:
ClassPathXmlApplicationContext(String[] configLocations)
参数说明:- configLocations:是一个字符串数组,其中包含了多个 Spring 配置文件的名称和位置。
示例
使用多个指定的配置文件的名称和路径创建一个字符串数组,然后使用该数组创建 ClassPathXmlApplicationContext 类的容器对象,关键代码如下:public static void main(String[] args){ String[] locations = {"appContext.xml","daoConfig.xml","viewConfig"}; //定义保存配置文件的字符串数组 ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(locations); //加载配置文件 }
所有教程
- socket
- Python基础教程
- C#教程
- MySQL函数
- MySQL
- C语言入门
- C语言专题
- C语言编译器
- C语言编程实例
- GCC编译器
- 数据结构
- C语言项目案例
- C++教程
- OpenCV
- Qt教程
- Unity 3D教程
- UE4
- STL
- Redis
- Android教程
- JavaScript
- PHP
- Mybatis
- Spring Cloud
- Maven
- vi命令
- Spring Boot
- Spring MVC
- Hibernate
- Linux
- Linux命令
- Shell脚本
- Java教程
- 设计模式
- Spring
- Servlet
- Struts2
- Java Swing
- JSP教程
- CSS教程
- TensorFlow
- 区块链
- Go语言教程
- Docker
- 编程笔记
- 资源下载
- 关于我们
- 汇编语言
- 大数据
- 云计算
- VIP视频