本文主要是介绍Spring中ContextLoaderListener和DispatcherServlet的差异,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在Spring WEB应用程序中,有两种类型的容器。这两种类型的容器在配置和初始化时是不同的。一种是 Application Context,另一种是Web Application Context。
Application Context是被ContextLoaderListener或者ContextLoaderServlet定义并在web.xml文件中配置的,例如:
<listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener><context-param><param-name>contextConfigLocation</param-name><param-value>classpath:*-context.xml</param-value>
</context-param>
在上面的配置中,Spring加载所需要的文件,而这些文件使用 *-context.xml来命名,并且在Spring加载时创建一个Application Context环境。这个Application Context环境,对于Spring运行来说,可以包含如中间层交易服务组件,数据访问对象,或者其它你想跨应用使用或者重用的组件。这样会为每一个应用获得一个Application Context。
ContextLoaderListener监听器的作用就是启动Web容器时,自动装配ApplicationContext的配置信息。因为它实现了ServletContextListener这个接口,在web.xml配置这个监听器,启动容器时,就会默认执行它实现的方法。
另外一个Context是WebApplicationContext,它是Application Context的子上下文环境。每一个DispatcherServlet定义一个Spring的web application,并且都与一个WebApplicationContext相关。WebApplicationContext初始化时,使用如下类似的代码:
<servlet><servlet-name>platform-services</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><init-param><param-name>contextConfigLocation</param-name><param-value>classpath:platform-services-servlet.xml</param-value></init-param><load-on-startup>1</load-on-startup>
</servlet>
用户提供的Spring配置文件的名字实际上是作为Servlet的一个初始化参数。最重要的是XML配置文件的名字必须如下的格式:
<servlet name>-servlet. xml
在上面的例子中, servlet的名字是:platform-services,所以 XML配置文件的名字必须是:platform-services-servlet.xml。
DispatcherServlet是前端控制器设计模式的实现,提供spring Web MVC的集中访问点,而且负责职责的分派,而且与Spring IoC容器无缝集成,从而可以获得Spring的所有好处。
这篇关于Spring中ContextLoaderListener和DispatcherServlet的差异的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!