spring容器启动之我见(一)
来源:程序员人生 发布时间:2015-04-29 08:17:21 阅读次数:3124次
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>
视察上面发现 这里我们自己写了1个监听类
CGYContextLoaderListener,
我们先来了解 spring api 中的ContextLoaderListener 类
ContextLoaderListener监听器的作用就是启动Web容器时,自动装配ApplicationContext的配置信息。由于它实现了ServletContextListener这个接口,在web.xml配置这个监听器,启动容器时,就会默许履行它实现的方法。至于ApplicationContext.xml这个配置文件部署在哪,如何配置多个xml文件,书上都没怎样详细说明。现在的方法就是查看它的API文档。在ContextLoaderListener中关联了ContextLoader这个类,所以全部加载配置进程由ContextLoader来完成。看看它的API说明。
第1段说明ContextLoader可以由 ContextLoaderListener和ContextLoaderServlet生成。如果查看ContextLoaderServlet的API,可以看到它也关联了ContextLoader这个类而且它实现了HttpServlet这个接口。
第2段,ContextLoader创建的是 XmlWebApplicationContext这样1个类,它实现的接口是WebApplicationContext->ConfigurableWebApplicationContex>ApplicationContext->BeanFactory这样1来spring中的所有bean都由这个类来创建
第3段,讲如何部署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文件,可以写在1起并1“,”号分隔。上面的applicationContext-*.xml采取通配符,比如这那个目录下有applicationContext-ibatis-base.xml,applicationContext-action.xml,applicationContext-ibatis-dao.xml等文件,都会1同被载入。
因而可知applicationContext.xml的文件位置就能够有两种默许实现:
第1种:直接将之放到/WEB-INF下,之在web.xml中声明1个listener;
第2种:将之放到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利用都有1个 ServletContext与之相干联。 ServletContext对象在利用启动的被创建,在利用关闭的时候被烧毁。 ServletContext在全局范围内有效,类似于利用中的1个全局变量。
ServletContextListener: 使用listener接口,开发者能够在为客户端要求提供服务之前向ServletContext中添加任意的对象。这个对象在ServletContext启动的时候被初始化,然后在ServletContext全部运行期间都是可见的。该接口具有两个方法以下所示:
-
void contextDestoryd(ServletContextEvent sce);
-
-
void contextInitialized(ServletContextEvent sce);
用户需要创建1个java类实现 javax.servlet.ServletContextListener接口并提供上面两个方法的实现。
示例: 当你需要在处理任何客户端要求之前创建1个数据库连接,并且希望在全部利用进程中该连接都是可用的,这个时候ServletContextListener接口就会10分有用了。
-
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>
1旦web利用启动的时候,我们就可以在任意的servlet或jsp中通过下面的方式获得数据库连接:
-
Connection conn = (Connection) getServletContext().getAttribute(”dbConn”);
这里我们就会想到这两个鬼servletcontext 和 servletcontextlistener 有啥区分
通过上面代码,我发现似乎好像我们在启动的时候去初始化接口servletcontextlistener,同时实现servletcontextlistener的两个方法,在该两个方法里面我们可以获得到 servletcontext
既然我们获得到了servletcontext 。因此WEB容器在启动时,它会为每一个WEB利用程序都创建1个对应的ServletContext对象,它代表当前web利用。是1个全局的贮存信息的空间servletContext,所有用户共用1个。所以,为了节省空间,提高效力,ServletContext中,要放必须的、重要的、所有用户需要同享的线程又是安全的1些信息。
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠