获取aplicationContext对象,从而获取任何注入的对象

在Servlet中

方法一: 从ServletContext 取出 Spring容器上下文

ApplicationContext applicationContext = (ApplicationContext) this.getServletContext().getAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE);

方法二: ApplicationContext applicationContext = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());

获取aplicationContext对象,从而获取任何注入的对象

上一篇:android自定义控件(2)-拖拽实现开关切换


下一篇:Struts2进行url重写