JavaSpring

实现方式

这里一共提供七种实现方式:

一、使用BeanFactory直接获取(不推荐)

使用BeanFactory从工厂中直接获取Bean实例,但是XmlBeanFactory类已经废弃,因此不建议使用,测试代码如下:

  1. /**
  2. * 方式一:XmlBeanFactory已经废弃不建议使用
  3. */
  4. @Test
  5. public void getBeanTest1() {
  6. BeanFactory beanFactory = new XmlBeanFactory(new ClassPathResource("applicationContext.xml"));
  7. UserInfo userInfo = (UserInfo) beanFactory.getBean("userInfo");
  8. System.out.println(userInfo);
  9. }

二.在初始化时保存ApplicationContext对象

可以在初始化的时候保存ApplicationContext对象,然后通过这个对象获取Bean,测试代码如下:

  1. /**
  2. * 方式二:使用ClassPathXmlApplicationContext获取ApplicationContext
  3. */
  4. @Test
  5. public void getBeanTest2() {
  6. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
  7. UserInfo userInfo = (UserInfo) applicationContext.getBean("userInfo");
  8. System.out.println(userInfo);
  9. }

三、继承自抽象类ApplicationObjectSupport

可以继承抽象类ApplicationObjectSupport并将自己继承的类注入到Spring容器中,示例代码如下:

  1. /**
  2. * 方法三:继承ApplicationObjectSupport来获取ApplicationContext,
  3. * 注意:需要把自己继承的类注入到Spring
  4. */
  5. @Test
  6. public void getBeanTest3() {
  7. ApplicationContextUtil2 applicationContextUtil2 = (ApplicationContextUtil2) ApplicationContextUtil.getBean("applicationContextUtil2");
  8. UserInfo userInfo = (UserInfo) applicationContextUtil2.getBean("userInfo");
  9. System.out.println(userInfo);
  10. }

其中ApplicationContextUtil2的代码如下所示:

  1. public class ApplicationContextUtil2 extends ApplicationObjectSupport {
  2. /**
  3. * 通过bean的id获取bean对象
  4. * @param beanName
  5. * @return
  6. */
  7. public Object getBean(String beanName){
  8. return super.getApplicationContext().getBean(beanName);
  9. }
  10. }

最后别忘了将Bean注入到Spring容器中,通过注解,或者配置均可,本示例通过配置实现

  1. <!-- 测试获取bean的方式,继承ApplicationObjectSupport需要先注入这个类 -->
  2. <bean id="applicationContextUtil2" class="com.leo.util.ApplicationContextUtil2"></bean>

四、继承自抽象类WebApplicationObjectSupport

可以继承抽象类WebApplicationObjectSupport并将自己继承的类注入到Spring容器中,示例代码如下:

  1. /**
  2. * 方法四:继承WebApplicationObjectSupport来获取ApplicationContext,
  3. * 注意:需要把自己继承的类注入到Spring,同时需要添加@WebAppConfiguration注解,否则会找不到web容器
  4. */
  5. @Test
  6. public void getBeanTest4() {
  7. ApplicationContextUtil3 applicationContextUtil3 = (ApplicationContextUtil3) ApplicationContextUtil.getBean("applicationContextUtil3");
  8. UserInfo userInfo = (UserInfo) applicationContextUtil3.getBean("userInfo");
  9. System.out.println(userInfo);
  10. }

其中ApplicationContextUtil3 的示例代码如下:

  1. public class ApplicationContextUtil3 extends WebApplicationObjectSupport{
  2. /**
  3. * 通过bean的id获取bean对象
  4. * @param beanName
  5. * @return
  6. */
  7. public Object getBean(String beanName){
  8. return super.getWebApplicationContext().getBean(beanName);
  9. }
  10. }

最后莫忘了将Bean注入到Spring容器中,通过注解,或者配置均可,本示例通过配置实现

  1. <!-- 测试获取bean的方式,继承WebApplicationObjectSupport需要先注入这个类 -->
  2. <bean id="applicationContextUtil3" class="com.leo.util.ApplicationContextUtil3"></bean>

五、使用Spring提供的工具类WebApplicationContextUtils

使用Spring提供的工具类WebApplicationContextUtils来获取WebApplicationContext对象,这个方法很常见于SpringMVC构建的web项目中,测试代码如下所示:

  1. /**
  2. * 方法五:使用WebApplicationContextUtils提供的方法获取ApplicationContext对象
  3. */
  4. @Test
  5. public void getBeanTest5(){
  6. //模拟ServletContext上下文,不然会出现空指针异常
  7. MockServletContext sc = new MockServletContext("");
  8. sc.addInitParameter(ContextLoader.CONFIG_LOCATION_PARAM, "/applicationContext.xml");
  9. ServletContextListener listener = new ContextLoaderListener();
  10. ServletContextEvent event = new ServletContextEvent(sc);
  11. listener.contextInitialized(event);
  12. //使用WebApplicationContextUtils的getRequiredWebApplicationContext方法
  13. WebApplicationContext webApplicationContext = WebApplicationContextUtils.getRequiredWebApplicationContext(sc);
  14. UserInfo userInfo = (UserInfo) webApplicationContext.getBean("userInfo");
  15. System.out.println(userInfo);
  16. //使用WebApplicationContextUtils的getWebApplicationContext方法
  17. WebApplicationContext webApplicationContext2 = WebApplicationContextUtils.getWebApplicationContext(sc);
  18. UserInfo userInfo2 = (UserInfo) webApplicationContext2.getBean("userInfo");
  19. System.out.println(userInfo2);
  20. }

六、实现ApplicationContextAware接口

通过实现ApplicationContextAware接口,在Spring容器启动的时候将ApplicationContext注入进去,从而获取ApplicationContext对象,这种方法也是常见的获取Bean的一种方式,测试代码如下:

  1. /**
  2. *方法六:实现ApplicationContextAware接口获取ApplicationContext
  3. */
  4. @Test
  5. public void getBeanTest6(){
  6. UserInfo userInfo2 = (UserInfo) ApplicationContextUtil.getBean("userInfo");
  7. System.out.println(userInfo2);
  8. }

其中ApplicationContextUtil的实现如下:

  1. public class ApplicationContextUtil implements ApplicationContextAware{
  2. private static ApplicationContext applicationContext;
  3. /**
  4. * 通过bean的id获取bean对象
  5. * @param beanName
  6. * @return
  7. */
  8. public static Object getBean(String beanName){
  9. return applicationContext.getBean(beanName);
  10. }
  11. /**
  12. * 根据bean的id和类型获取bean对象
  13. * @param beanName
  14. * @param clazz
  15. * @param <T>
  16. * @return
  17. */
  18. public static <T> T getBean(String beanName,Class<T> clazz){
  19. return clazz.cast(getBean(beanName));
  20. }
  21. @Override
  22. public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
  23. this.applicationContext = applicationContext;
  24. }
  25. }

七、使用ContextLoader提供的getCurrentWebApplicationContext方法

使用ContextLoader提供的getCurrentWebApplicationContext方法提供的方法也是常用的获取WebApplicationContext的一种方法,这个方法常见于SpringMVC实现的web项目中。
测试代码如下:

  1. /**
  2. * 方法七:使用ContextLoader的getCurrentWebApplicationContext方法获取WebApplicationContext
  3. */
  4. @Test
  5. public void getBeanTest7() {
  6. MockServletContext sc = new MockServletContext("");
  7. sc.addInitParameter(ContextLoader.CONFIG_LOCATION_PARAM, "/applicationContext.xml");
  8. ServletContextListener listener = new ContextLoaderListener();
  9. ServletContextEvent event = new ServletContextEvent(sc);
  10. listener.contextInitialized(event);
  11. //如果不加上面的模拟创建ServletContext对象,会报空指针异常
  12. WebApplicationContext wac = ContextLoader.getCurrentWebApplicationContext();
  13. UserInfo userInfo = (UserInfo) wac.getBean("userInfo");
  14. System.out.println(userInfo);
  15. }