当前位置: 编程技术>java/j2ee
JSP 获取Spring 注入对象示例
来源: 互联网 发布时间:2014-10-20
本文导语: ServletContext sc = this.getServletConfig().getServletContext(); ApplicationContext ac2 = WebApplicationContextUtils.getWebApplicationContext(sc); 要获取的对象 serv = (要获取的对象) ac2.getBean("spring配置文件中的id");
ServletContext sc = this.getServletConfig().getServletContext(); ApplicationContext ac2 = WebApplicationContextUtils.getWebApplicationContext(sc);
要获取的对象 serv = (要获取的对象) ac2.getBean("spring配置文件中的id");