标签:
spring容器启动之我见。
本人也是自己看看源码,然后方便以后自己记忆和理解,故写此文章,如果有什么错的地方还请大家提出。
针对于tomcat做服务器的项目,我们首先看的就是web.xml文件,spring容器启动去加载监听器
看如下代码:其监听器使用spring api中的类ContextLoaderListener
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value> classpath*:/spring-*.xml</param-value>
</context-param>
<context-param>
<param-name>spring.profiles.default</param-name>
<param-value>production</param-value>
</context-param>
<listener>
<listener-class>org.szgzw.frame.web.CGYContextLoaderListener</listener-class>
<!-- <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> -->
</listener>
观察上面发现 这里我们自己写了一个监听类CGYContextLoaderListener,
我们先来了解 spring api 中的ContextLoaderListener 类
ContextLoaderListener监听器的作用就是启动Web容器时,自动装配ApplicationContext的配置信息。因为它实现了ServletContextListener这个接口,在web.xml配置这个监听器,启动容器时,就会默认执行它实现的方法。至于ApplicationContext.xml这个配置文件部署在哪,如何配置多个xml文件,书上都没怎么详细说明。现在的方法就是查看它的API文档。在ContextLoaderListener中关联了ContextLoader这个类,所以整个加载配置过程由ContextLoader来完成。看看它的API说明。
第一段说明ContextLoader可以由 ContextLoaderListener和ContextLoaderServlet生成。如果查看ContextLoaderServlet的API,可以看到它也关联了ContextLoader这个类而且它实现了HttpServlet这个接口。
第二段,ContextLoader创建的是 XmlWebApplicationContext这样一个类,它实现的接口是WebApplicationContext->ConfigurableWebApplicationContex>ApplicationContext->BeanFactory这样一来spring中的所有bean都由这个类来创建
第三段,讲如何部署applicationContext的xml文件。
如果在web.xml中不写任何参数配置信息,默认的路径是/WEB-INF/applicationContext.xml,在WEB-INF目录下创建的xml文件的名称必须是applicationContext.xml;
如果是要自定义文件名可以在web.xml里加入contextConfigLocation这个context参数:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/classes/applicationContext-*.xml
</param-value>
</context-param>
在<param-value> </param-value>里指定相应的xml文件名,如果有多个xml文件,可以写在一起并一“,”号分隔。上面的applicationContext-*.xml采用通配符,比如这那个目录下有applicationContext-ibatis-base.xml,applicationContext-action.xml,applicationContext-ibatis-dao.xml等文件,都会一同被载入。
由此可见applicationContext.xml的文件位置就可以有两种默认实现:
第一种:直接将之放到/WEB-INF下,之在web.xml中声明一个listener;
第二种:将之放到classpath下,但是此时要在web.xml中加入<context-param>,用它来指明你的applicationContext.xml的位置以供web容器来加载。按照Struts2 整合spring的官方给出的档案,写成:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext-*.xml,classpath*:applicationContext-*.xml</param-value>
</context-param>
这样我们看到CGYContextLoaderListener 这个类,我们就知道他肯定也实现了接口servlet api ServletContextListener, 或者我们知道它继承了类spring api ContextLoaderListener
接着往底层看,接口servlet api ServletContextListener 继承了接口 java.util.EventListener EventListener所有事件侦听器接口必须扩展的标记接口、
ServletContext : 每一个web应用都有一个 ServletContext与之相关联。 ServletContext对象在应用启动的被创建,在应用关闭的时候被销毁。 ServletContext在全局范围内有效,类似于应用中的一个全局变量。
ServletContextListener: 使用listener接口,开发者能够在为客户端请求提供服务之前向ServletContext中添加任意的对象。这个对象在ServletContext启动的时候被初始化,然后在ServletContext整个运行期间都是可见的。该接口拥有两个方法如下所示:
-
void contextDestoryd(ServletContextEvent sce);
-
-
void contextInitialized(ServletContextEvent sce);
用户需要创建一个java类实现 javax.servlet.ServletContextListener接口并提供上面两个方法的实现。
示例: 当你需要在处理任何客户端请求之前创建一个数据库连接,并且希望在整个应用过程中该连接都是可用的,这个时候ServletContextListener接口就会十分有用了。
-
package com.database;
-
import javax.servlet.ServletContext;
-
import javax.servlet.ServletContextAttributeEvent;
-
import javax.servlet.ServletContextAttributesListener;
-
import javax.servlet.ServletContextEvent;
-
import javax.servlet.ServletContextListener;
-
import com.database.DbConnection;
-
-
public class DatabaseContextListener implements ServletContextListener {
-
-
private ServletContext context = null;
-
private Connection conn = null;
-
-
public DatabaseContextListener() {
-
-
}
-
-
public void contextInitialized(ServletContextEvent event) {
-
this.context = event.getServletContext();
-
conn = DbConnection.getConnection;
-
-
context = setAttribute(”dbConn”,conn);
-
}
-
-
-
public void contextDestroyed(ServletContextEvent event){
-
this.context = null;
-
this.conn = null;
-
}
-
}
然后部署该类,并在web.xml文件中添加
-
<listener>
-
com.database.DatabaseContextListener
-
</listener>
一旦web应用启动的时候,我们就能在任意的servlet或者jsp中通过下面的方式获取数据库连接:
-
Connection conn = (Connection) getServletContext().getAttribute(”dbConn”);
这里我们就会想到这两个鬼servletcontext 和 servletcontextlistener 有啥区别
通过上面代码,我发现似乎好像我们在启动的时候去初始化接口servletcontextlistener,同时实现servletcontextlistener的两个方法,在该两个方法里面我们可以获取到 servletcontext
既然我们获取到了servletcontext 。因而WEB容器在启动时,它会为每个WEB应用程序都创建一个对应的ServletContext对象,它代表当前web应用。是一个全局的储存信息的空间servletContext,所有用户共用一个。所以,为了节省空间,提高效率,ServletContext中,要放必须的、重要的、所有用户需要共享的线程又是安全的一些信息。
spring容器启动之我见
标签:
原文地址:http://blog.csdn.net/baicp3/article/details/44959851