欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Spring在代码中获取bean的几种方式详解

程序员文章站 2023-10-30 18:42:04
方法如下 方法一:通过读取xml文件反射生成对象 方法二:通过spring提供的utils类获取applicationcontext对象 方法三:继承...

方法如下

  • 方法一:通过读取xml文件反射生成对象
  • 方法二:通过spring提供的utils类获取applicationcontext对象
  • 方法三:继承自抽象类applicationobjectsupport
  • 方法四:继承自抽象类webapplicationobjectsupport
  • 方法五:实现接口applicationcontextaware
  • 方法六:通过spring提供的contextloader

获取spring中bean的方式总结:

方法一:通过读取xml文件反射生成对象

applicationcontext ac = new filesystemxmlapplicationcontext("applicationcontext.xml");
ac.getbean("userservice");//比如:<bean id="userservice" class="com.cloud.service.impl.userserviceimpl"></bean>

说明:这样的方式适用于採用spring框架的独立应用程序,须要程序通过配置文件手工初始化spring的情况。

方法二:通过spring提供的工具类获取applicationcontext对象

applicationcontext ac1 = webapplicationcontextutils.getrequiredwebapplicationcontext(servletcontext sc);
applicationcontext ac2 = webapplicationcontextutils.getwebapplicationcontext(servletcontext sc);
ac1.getbean("beanid");
ac2.getbean("beanid");

说明:这样的方式适合于spring框架的b/s系统,通过servletcontext对象获取applicationcontext对象。然后在通过它获取须要的类实例。上面两个工具方式的差别是,前者在获取失败时抛出异常。后者返回null。

方法三:继承自抽象类applicationobjectsupport

说明:抽象类applicationobjectsupport提供getapplicationcontext()方法。能够方便的获取applicationcontext。

spring初始化时。会通过该抽象类的setapplicationcontext(applicationcontext context)方法将applicationcontext 对象注入。

方法四:继承自抽象类webapplicationobjectsupport

说明:类似上面方法。调用getwebapplicationcontext()获取webapplicationcontext

方法五:实现接口applicationcontextaware

说明:实现该接口的setapplicationcontext(applicationcontext context)方法,并保存applicationcontext 对象。spring初始化时,会通过该方法将applicationcontext对象注入。

下面是实现applicationcontextaware接口方式的代码,前面两种方法类似:

public class springcontextutil implements applicationcontextaware { 
 
  // spring应用上下文环境 
  private static applicationcontext applicationcontext; 
 
  /** 
   * 实现applicationcontextaware接口的回调方法。设置上下文环境 
   * 
   * @param applicationcontext 
   */ 
  public void setapplicationcontext(applicationcontext applicationcontext) { 
    springcontextutil.applicationcontext = applicationcontext; 
  } 
 
  /** 
   * @return applicationcontext 
   */ 
  public static applicationcontext getapplicationcontext() { 
    return applicationcontext; 
  }  
  /** 
   * 获取对象 
   * 
   * @param name 
   * @return object
   * @throws beansexception 
   */ 
  public static object getbean(string name) throws beansexception { 
    return applicationcontext.getbean(name); 
  } 
}

尽管,spring提供的后三种方法能够实如今普通的类中继承或实现对应的类或接口来获取spring 的applicationcontext对象,可是在使用是一定要注意实现了这些类或接口的普通java类一定要在spring 的配置文件applicationcontext.xml文件里进行配置。否则获取的applicationcontext对象将为null。

方法六:通过spring提供的contextloader

webapplicationcontext wac = contextloader.getcurrentwebapplicationcontext();
wac.getbean(beanid);

最后提供一种不依赖于servlet,不须要注入的方式。可是须要注意一点,在server启动时。spring容器初始化时,不能通过下面方法获取spring 容器,细节能够查看spring源代码org.springframework.web.context.contextloader。

junit测试时contextloader.getcurrentwebapplicationcontext()=null

在junit测试方法中加入以下代码,正式环境不用

mockservletcontext sc = new mockservletcontext("");
sc.addinitparameter(contextloader.config_location_param, "/applicationcontext.xml");
servletcontextlistener listener = new contextloaderlistener();
servletcontextevent event = new servletcontextevent(sc);
listener.contextinitialized(event);

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。