如何在Web项目中配置Spring的IOC容器?
如果需要在Web项目中使用Spring的IOC容器,可以在Web项目配置文件web.xml中做出如下配置:
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:beans.xml</param-value>
</context-param>