实现applicationContextAware接口 获取bean_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 实现applicationContextAware接口 获取bean

实现applicationContextAware接口 获取bean

 2014/9/2 18:41:28  fangzi370307  程序员俱乐部  我要评论(0)
  • 摘要:可以导成jar包来用importorg.springframework.beans.BeansException;importorg.springframework.context.ApplicationContext;importorg.springframework.context.ApplicationContextAware;publicclassSpringUtilsimplementsApplicationContextAware
  • 标签:实现 ApplicationContext 接口 APP

可以导成jar包来用
class="java">

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;

public class SpringUtils
  implements ApplicationContextAware
{
  private static ApplicationContext applicationContext;

  public static ApplicationContext getApplicationContext()
  {
    return applicationContext;
  }

  public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
    applicationContext = applicationContext;
  }

  public static Object getBean(String paramString) {
    return applicationContext.getBean(paramString);
  }
}
发表评论
用户名: 匿名