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

时间:2023-01-31 11:17:44

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

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

 <context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>

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

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

  ContextLoaderListener完成WebApplicationContext的初始化