首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

spring流入servlet

2012-07-18 
spring注入servlet传统的配置方法是无法将bean或属性直接注入到servlet中的,配置代理servlet亦比较麻烦,这

spring注入servlet

传统的配置方法是无法将bean或属性直接注入到servlet中的,配置代理servlet亦比较麻烦,这里其实有比较简单的方法,其实就是在servlet的init()方法中加入要注入的内容:

ServletContext application = getServletContext();WebApplicationContext wac = WebApplicationContextUtils.getWebApplicationContext(application);// 获取spring的contextxxxInterface= (xxxInterfaceImpl) wac.getBean("xxxInterface");

?

这样就把xxxInterfaceImpl注入进来了。

热点排行