Spring在web.xml中的配置详细介绍

幻想一步成功者突遭失败,会觉得浪费了时间,付出了精力,却认为没有任何收获;在失败面前,懦弱者痛苦迷茫,彷徨畏缩;而强者却坚持不懈,紧追不舍。

Spring在web.xml中的配置详细介绍

前言

在实际项目中spring的配置文件applicationcontext.xml是通过spring提供的加载机制自动加载到容器中。在web项目中,配置文件加载到web容器中进行解析。目前,spring提供了两种加载器,以供web容器的加载:一种是ContextLoaderListener,另一种是ContextLoaderServlet。这两种在功能上完全相同,只是前一种是基于Servlet2.3版本中新引入的Listener接口实现,而后一种是基于Servlet接口实现,以下是这两种加载器在web.xml中的配置应用:

ContextLoaderListener

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

ContextLoaderServlet

<servlet> 
 <servlet-name>context</servlet-name> 
<servlet-class>org.springframework.context.ContextLoaderServlet</servlet-class> 
 <load-on-startup>1</load-on-startup> 
</servlet> 

通过上面的配置,web容器会自动加载applicationcontext.xml初始化。

如果需要指定配置文件的位置,可通过context-param加以指定:

<context-param> 
 <param-name>contextConfigLocation</param-name> 
 <param-value>/WEB-INF/myApplicationContext.xml</param-value> 
</context-param> 

之后,可以通过WebApplicationContextUtils.getWebApplicationContext方法在web应用中获取applicationcontext的引用。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

到此这篇关于Spring在web.xml中的配置详细介绍就介绍到这了。好心不一定会换来感恩,但千万不要因此而灰心。更多相关Spring在web.xml中的配置详细介绍内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

您可能有感兴趣的文章
SpringBoot集成JWT

Spring MVC之DispatcherServlet_动力节点Java学院整理

Spring mvc 分步式session的实例详解

JSP 开发之Spring BeanUtils组件如何使用

详解Spring的核心机制依赖注入