SpringBoot学习-SpringBoot中其他普通类调用Spring管理的Servicedao等bean

Posted 严少来也

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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学习-SpringBoot中其他普通类调用Spring管理的Servicedao等bean的主要内容,如果未能解决你的问题,请参考以下文章

springboot学习目录

SpringBoot学习笔记——Web开发探究

springboot项目怎么调用深度算法

超详细的springBoot学习教程,springboot学习看这篇就够了

SpringBoot学习笔记——自动配置原理

学习SpringBoot