spring容器 的启动即实例化(其实就是程序中执行加载 xml配置文件):

启动方式:
一.应用程序下加载

ApplicationContext ctx = new ClassPathXmlApplicationContext("testspring2.xml");


二.web模式下加载

1. 首先,在web.xml中配置spring的配置文件的位置

<context-param> 
    <param-name>contextConfigLocation</param-name> 
    <param-value>classpath:spring/spring-applicationContext.xml</param-value> 
</context-param>


注:context-param中定义的是application范围内的参数,存放在servletcontext中

2. 在web.xml中定义listener

<listener> 
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
</listener>


  ContextLoaderListener实现ServletContextListener,读取contextConfigLocation中定义的xml文件,如果不设置contextConfigLocation的初始参数则默认会读取WEB-INF路径下的 application.xml文件。ContextLoaderListener读取这些XML文件并产生 WebApplicationContext对象(Spring容器实例),然后将这个对象放置在ServletContext的属性里,这样我们只要可以得到Servlet就可以得到WebApplicationContext对象,并利用这个对象访问spring容器管理的bean。