评论

收藏

[JSP] JSP 获取Spring 注入对象示例

开发技术 开发技术 发布于:2021-10-23 16:36 | 阅读数:186 | 评论:0

<%@ page import="org.springframework.web.context.support.WebApplicationContextUtils"%>
<%@ page import="org.springframework.context.ApplicationContext"%>
ServletContext sc = this.getServletConfig().getServletContext();
ApplicationContext ac2 = WebApplicationContextUtils.getWebApplicationContext(sc);
要获取的对象 serv = (要获取的对象) ac2.getBean("spring配置文件中的id");


关注下面的标签,发现更多相似文章