在servlet中使用spring的依赖注入,必须要在配置文件中进行声明。
一、 在web.xml文件中需要添加如下配置:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
二、 在servlet中通过 WebApplicationContext来产生applicationContext , 进而使用spring的依赖注入功能
代码如下:
ServletContext servletContext = this.getServletContext();
WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(servletContext);
IService service=(Service)ctx.getBean("Service");
备注:
当然在action中使用spring也可以采用这种方法