首页 > 编程 > JSP > 正文

Spring在web.xml中的配置介绍

2024-09-05 00:18:39
字体:
来源:转载
供稿:网友

在实际项目中spring的配置文件applicationcontext.xml是通过spring提供的加载机制自动加载到容器中,但是有许多朋友们不知道Spring在web.xml中的配置到底是怎样的,现在我们去看看Spring在web.xml中的配置介绍。
目前,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中的配置介绍后,按照以上步骤应该不会出问题,有问题可以留言给我们错新技术频道哦。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表