SpringMVC中如何获取bean对象呢?
下文笔者讲述一些无法使用 @Autowired 注入bean的 时候,获取bean的方法分享,如下所示
使用 ContextLoader.getCurrentWebApplicationContext() 获取上下文 然后使用getBean方法即可获取bean对象例:获取bean对象的实例
beanId定义 <bean id="beanID"> //获取bean定义信息 WebApplicationContext ctx = ContextLoader.getCurrentWebApplicationContext(); BeanService beanService = (BeanService)ctx.getBean("beanID");
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。