JSP 获取Spring 注入对象示例

网络编程 2021-07-05 11:23www.168986.cn编程入门
这篇文章主要介绍了JSP如何获取Spring 注入对象,实现代码如下,需要的朋友不要错过
<%@ page import=".springframework.web.context.support.WebApplicationContextUtils"%>
<%@ page import=".springframework.context.ApplicationContext"%>

ServletContext sc = this.getServletConfig().getServletContext();
ApplicationContext ac2 = WebApplicationContextUtils.getWebApplicationContext(sc);

要获取的对象 serv = (要获取的对象) ac2.getBean("spring配置文件中的id");

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by