首页 > 代码库 > Servlet 获取 Spring 中的对象

Servlet 获取 Spring 中的对象

ServletContext servletContext = this.getServletContext();
		WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(servletContext);
		managerServ = (IManager) ctx.getBean("IManager");

Servlet 获取 Spring 中的对象