通过Spring上下文获取Bean、Service等类
引子:(springboot项目)自己在开发中遇到的坑,如果程序不是从前端发送请求,直接使用xxxxService层的API,这时Serivce层会有注入为NULL的情况(加入了@Autowired注解),无法获取Service(博主暂时不知道原因,可能和底层有关,有知道原因的大牛欢迎留言解答,感谢!)。
下面说一下通过Spring上下文获取Service解决方案:
第一步:首先创建一个springUtils工具类(叫什么自己起就行),下面就是代码直接复制粘贴到自己的项目(注意:引入的jar包也写出来了,有使用的小伙伴不要引错jar包)。
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;
@Component
public class SpringUtils implements ApplicationContextAware {
private static ApplicationContext applicationContext = null;
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
if(SpringUtils.applicationContext == null){
SpringUtils.applicationContext = applicationContext;
}
}
//获取applicationContext
public static ApplicationContext getApplicationContext() {
return applicationContext;
}
//通过name获取 Bean.
public static Object getBean(String name){
return getApplicationContext().getBean(name);
}
//通过class获取Bean.
public static <T> T getBean(Class<T> clazz){
return getApplicationContext().getBean(clazz);
}
//通过name,以及Clazz返回指定的Bean
public static <T> T getBean(String name,Class<T> clazz){
return getApplicationContext().getBean(name, clazz);
}
}
第二步:在调用service的方法中创建applicationContext,通过getBean(自己项目中的Service的类.class)
ApplicationContext applicationContext = SpringUtils.getApplicationContext();
xxxService xxxservice = applicationContext.getBean(xxxService.class);
举例:之后就可以使用里边的方法xxxservice.save();