package com.whaty.framework.common.spring;

import java.io.PrintStream;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;

@Component
public class SpringUtil
implements ApplicationContextAware
{
private static ApplicationContext applicationContext;

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

public static ApplicationContext getApplicationContext() {
return applicationContext;
}

public static Object getBean(String name)
throws BeansException
{
Object result = null;
try {
result = applicationContext.getBean(name);
} catch (Exception e) {
System.out.println(e.getMessage());
}
return result;
}
}

 

相关文章:

  • 2022-12-23
  • 2021-11-16
  • 2021-12-12
  • 2021-12-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-31
  • 2021-12-18
  • 2022-12-23
  • 2021-09-02
  • 2021-09-20
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案