如何在web项目中配置Spring的Ioc容器

Posted *青锋*

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在web项目中配置Spring的Ioc容器相关的知识,希望对你有一定的参考价值。

在web项目中配置Spring的Ioc容器其实就是创建web应用的上下文(WebApplicationContext)

自定义要使用的IoC容器而不使用默认的XmlApplicationContext容器:

 1 <context-param>
 2     <param-name>contextConfigLocation</param-name>
 3     <param-value>classpath:applicationContext.xml</param-value>
 4 </context-param>

将IoC容器加载到Web容器中:

1 <listener>
2     <listener-class>
3         org.springframework.web.context.ContextLoaderListener
4     </listener-class>
5 </listener>

  ContextLoaderListener完成WebApplicationContext的初始化

以上是关于如何在web项目中配置Spring的Ioc容器的主要内容,如果未能解决你的问题,请参考以下文章

关于Spring——IoC

模拟Spring如何在WEB中运行

spring之如何在web应用中使用?

IOC启动过程

深入分析Spring 与 Spring MVC容器

Spring IOC容器