Spring 自带了多种类型的上下文、根据你的业务自由选择。
- AnnotationConfigApplicationContext:从一个或多个基于Java配置类中加载Spring 应用上下文
- AnnotationConfigWebApplicationContext:从一个或多个基于Java配置类中加载Spring Web应用上下文
- ClassPathXMLApplicationContext:从类路径下的一个或多个XML配置文件中加载上下文定义、把应用上下文的定义文件作为资源
- FileSystemXMLApplicationContext:从文件系统下的一个或多个XML配置文件中加载上下文定义。
- XMLWebApplicationContext:从Web应用下的一个或多个XML配置文件中加载上下文定义