获取spring容器bean JSP 获取spring容器中bean的两种方法总结

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

获取spring容器bean JSP 获取spring容器中bean的两种方法总结

  2021-03-24 我要评论
想了解JSP 获取spring容器中bean的两种方法总结的相关内容吗,在本文为您仔细讲解获取spring容器bean的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:JSP,获取spring容器中bean的两种方法总结,spring容器中bean的获取,下面大家一起来学习吧。

JSP 获取spring容器中bean的方法总结

方案1(Web中使用):

ApplicationContext ct = WebApplicationContextUtils.getRequiredWebApplicationContext(ServletActionContext.getServletContext());
 logService = (ISysLogService) ct.getBean("sysLogServiceImpl");

说明:getRequiredWebApplicationContext方法中需要传入ServletContext()对象,在struts2中可以这样获取:

ServletActionContext.getServletContext()

方案2(通过手动启动spring容器后获取,如果在web中,不建议这样使用):

//匹配多个文件

ApplicationContext ct = new FileSystemXmlApplicationContext(new String[]
 { "classpath:applicationContext.xml","classpath:lb/*/applicationContext-*.xml"});

//加载一个文件

ApplicationContext ct = new FileSystemXmlApplicationContext("classpath:applicationContext.xml");

注:获取spring容器中bean的方法还有几个,这里就不一一列举了,个人认为这两个是最直接最简单的。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们