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这样一个类,它实现的接口是WebApplicationContext->ConfigurableWebApplicationContext->ApplicationContext->BeanFactory,这样一来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文件,可以写在一起并用“,”号分隔。上面的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>
相关推荐
Spring MVC并未提供自己的监听器接口,但它与标准的Java Servlet API紧密集成,可以利用Servlet API中的监听器来扩展和定制应用程序的行为。 1. **HttpSessionListener** 和 **HttpSessionAttributeListener**: ...
-- 加载Spring的ContextLoaderListener监听器 --> <listener-class>org.springframework.web.context.ContextLoaderListener ``` `ContextLoaderListener`监听器会在Web应用启动时加载配置文件,并创建Spring的...
struts2与spring的整合。导入struts2-spring-... spring监听器对应的API类为:org.springframework.web.context.ContextLoaderListener。 struts2-spring-plugin包为我们将struts2的对象工厂设置为spring的IoC容器,
3. 配置WEB-INF下的web.xml文件,添加Spring的ContextLoaderListener监听器来初始化Spring上下文,并引入Spring Security的DelegatingFilterProxy过滤器,该过滤器是Spring Security的核心,负责调用实际的安全过滤...
2. **Spring的Servlet监听器**:如ContextLoaderListener,用于初始化Spring的ApplicationContext,加载配置文件并管理bean。 3. **HandlerMapping**:负责将请求映射到相应的处理器,Spring MVC提供了多种映射策略...
5. **ContextLoaderListener**:这是Spring Web应用的一个启动监听器,它会创建一个全局的ApplicationContext,用来管理所有Web应用范围内的bean。 接下来,我们关注`springs-webmvc`模块,它是Spring MVC的核心,...
除了Servlet API提供的过滤器和监听器,有些框架比如Spring MVC还提供了额外的过滤器和监听器。例如,Spring MVC的HandlerInterceptor接口允许在请求处理的不同阶段进行拦截,而它的ContextLoaderListener负责加载...
在Spring框架中,`ContextLoaderListener`是一个非常重要的监听器,它用于初始化Web应用程序上下文。当Web容器启动时,它会触发`ContextLoaderListener`,该监听器将读取并创建一个WebApplicationContext。这通常在`...
- `spring-web.jar`:支持Web应用,包括Servlet监听器和Web相关的上下文。 - `spring-aop.jar`:提供面向切面编程(AOP)支持,用于日志、事务管理等功能。 - `spring-expression.jar`:包含强大的表达式语言,...
7. **配置Web.xml**:在Web应用的部署描述符`web.xml`中配置SpringMVC的DispatcherServlet,以及Spring的监听器,如ContextLoaderListener,以启动Spring容器。 8. **测试与运行**:完成上述配置后,你可以通过单元...
- `ContextLoaderListener` 监听器初始化 Spring 上下文,加载 `applicationContext.xml` 配置文件,定义全局范围的 Bean。 3. **spring-servlet.xml 配置**: - 这个文件通常包含 Spring MVC 的具体配置,如 ...
- 在 `web.xml` 中,设置 Spring 的上下文加载监听器 `ContextLoaderListener` 以启动 Spring 容器,并指定配置文件的位置。确保 `web.xml` 中的 Spring 配置文件设置在监听器之前,以避免配置顺序错误。 ```xml ...
此外,`RequestContextListener`监听器用于初始化和销毁`WebApplicationContext`。 3. **Spring MVC框架** Spring MVC是Spring-Web中的重要组成部分,它通过`DispatcherServlet`作为前端控制器来调度请求。`...
配置`web.xml`,设置Spring监听器`ContextLoaderListener`,以便初始化Spring上下文。 接口和实现类是定义任务的基础。例如,我们创建一个`TaskService`接口和`TaskServiceImpl`实现类,分别定义并实现需要定时执行...
- **Spring ContextLoaderListener**:配置Spring上下文加载监听器,允许Spring在应用启动时读取并初始化配置文件,通常使用通配符来指定配置文件的位置。 - **CharacterEncodingFilter**:解决字符编码问题,统一...
- 在`web.xml`中配置Struts 2的`FilterDispatcher`过滤器,以及Spring的`ContextLoaderListener`监听器。 - 在`struts.xml`中定义Action,包括Action的类名和结果转发。 - 在业务逻辑层(Service层),定义...
该文件定义了Spring MVC的核心组件,包括监听器和DispatcherServlet的配置。 ```xml <listener-class>org.springframework.web.context.ContextLoaderListener <servlet-name>test <servlet-class>org....
可能需要配置监听器,如`ContextLoaderListener`,以启动Spring的ApplicationContext,使Spring能够管理我们的bean。 9. 创建结果展示的JSP页面: 当注册成功后,跳转到一个结果页面(如`result.jsp`),显示注册...