1. 程式人生 > 其它 >@PostConstruct +getapplicationcontext.getbean springboot獲取getBean

@PostConstruct +getapplicationcontext.getbean springboot獲取getBean

Component
public class SpringContextUtils implements ApplicationContextAware {
public static ApplicationContext applicationContext;

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

public static Object getBean(String name) {
return applicationContext.getBean(name);
}

public static <T> T getBean(String name, Class<T> requiredType) {
return applicationContext.getBean(name, requiredType);
}

public static boolean containsBean(String name) {
return applicationContext.containsBean(name);
}

public static boolean isSingleton(String name) {
return applicationContext.isSingleton(name);
}

public static Class<? extends Object> getType(String name) {
return applicationContext.getType(name);
}

}

如果有報ApplicationContext空指標,則可能原因是沒載入之前就往下走了,要在要使用的類前面加

@DependsOn("springContextUtils")


來源
springboot獲取getBean方法以及ApplicationContext空指標問題解決
springboot獲取getBean方法以及ApplicationContext空指標問題解決