我是靠谱客的博主 火星上火龙果,最近开发中收集的这篇文章主要介绍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中的配置详细介绍所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(113)

评论列表共有 0 条评论

立即
投稿
返回
顶部