在SpringBoot用普通类调用Spring管理的Bean
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在SpringBoot用普通类调用Spring管理的Bean相关的知识,希望对你有一定的参考价值。
参考技术A 首先创建一个用来保存ApplicationContext对象的工具类然后在Application启动类上方增加如下注解,Application启动时就会调用该工具类的setApplicationContext方法
现在就可以通过工具类直接在普通类里获取Spring管理的Bean了
SpringBoot学习-SpringBoot中其他普通类调用Spring管理的Servicedao等bean
在springboot的使用中,有时需要在其他的普通类中调用托管给spring的dao或者service,从而去操作数据库。网上大多数的资料都是说添加一些注解什么的,但是这都是不行的。
举个使用情景:比如在服务器在于硬件或者客户端之间进行Socket通讯时,那么如果说服务器收到了一条消息,需要去操作数据库的话,怎么去调用Service或者dao去操作数据库呢?下面来看我给出的解决办法:
(1)首先需要新建一个类,实现 ApplicationContextAware 接口。
@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);
(2)在通讯类中获取ApplicationContext对象,然后去获取需要的service 或者 dao。
然后就可以直接调用了。
以上是关于在SpringBoot用普通类调用Spring管理的Bean的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot中在普通类里面加载Spring容器中的类