Home 如何手动获取Spring容器中的bean
Post
Cancel

如何手动获取Spring容器中的bean

1、定义一个工具类,实现ApplicationContextAware,实现setApplicationContext()方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class SpringContextUtils implements ApplicationContextAware { 

    private static ApplicationContext context;

    @Override
    public void setApplicationContext(ApplicationContext context)
            throws BeansException {
        SpringContextUtils.context = context;
    }

    public static ApplicationContext getContext() {
        return context;
    }

}

如此一来,我们就可以通过该工具类,来获得ApplicationContext,进而使用其getBean()方法来获取我们需要的bean。

2、在Spring配置文件中注册该工具类

之所以我们能如此方便地使用该工具类来获取,正是因为Spring能够为我们自动地执行setApplicationContext()方法,显然,这也是因为IOC的缘故,所以必然这个工具类也是需要在Spring的配置文件中进行配置的。

1
<bean id="springContextUtils" class="com.zker.common.util.SpringContextUtils" />

3、编写方法进行使用

一切就绪,我们就可以在需要使用的地方调用该方法来获取bean了。

1
2
3
4
5
6
7
8
9
10
11
12
public String ajaxRegister() throws IOException {
    UserDao userDao = (UserDao) SpringContextUtils.getContext().getBean("userDao");
    if (userDao.findAdminByLoginName(loginName) != null
            || userDao.findUserByLoginName(loginName) != null) {
        message.setMsg("用户名已存在");
        message.setStatus(false);
    } else {
        message.setMsg("用户名可以注册");
        message.setStatus(true);
    }
    return "register";
}

参考 如何手动获取Spring容器中的bean?

This post is licensed under CC BY 4.0 by the author.