package com.xncoding.pos.utils;
|
|
import org.springframework.beans.BeansException;
|
import org.springframework.context.ApplicationContext;
|
import org.springframework.context.ApplicationContextAware;
|
import org.springframework.stereotype.Component;
|
|
@Component
|
public class ApplicationContextUtils implements ApplicationContextAware {
|
|
private static ApplicationContext context;
|
|
|
@Override
|
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
|
context = applicationContext;
|
}
|
|
/**
|
* 获取bean
|
* @param beanName
|
* @return
|
*/
|
public static Object getBean(String beanName) {
|
return context.getBean(beanName);
|
}
|
}
|