springboot使用上下文获取bean,详细代码示例

下面要给大家介绍的是springboot使用上下文获取bean的内容,下面是具体的详细代码,一起来了解一下吧。

问题:

在使用springboot开发项目的过程当中,有些时候可能出现说会有在spring容器加载前就需要注入bean的类,这个时候如果直接使用@Autowire注解,那么就会出现控制针异常。

解决方法:

创建一个springContextUtil类。

package cn.eangaie.appcloud.util;
import org.springframework.context.ApplicationContext;
public class SpringContextUtil
{
    private static ApplicationContext applicationContext;
    //获取上下文
    public static ApplicationContext getApplicationContext()
    {
        return applicationContext;
    }
    //设置上下文
    public static void setApplicationContext(ApplicationContext applicationContext)
    {
        SpringContextUtil.applicationContext = applicationContext;
    }
    //通过名字获取上下文中的bean
    public static Object getBean(String name)
    {
        return applicationContext.getBean(name);
    }
    //通过类型获取上下文中的bean
    public static Object getBean(Class < ? > requiredType)
    {
        return applicationContext.getBean(requiredType);
    }
}

在AppcloudApplication.class启动类里面,将初始化该类,并将context注入进去。

public class AppcloudApplication
{
    public static void main(String[] args)
    {
        ApplicationContext context = SpringApplication.run(AppcloudApplication.class, args);
        SpringContextUtil.setApplicationContext(context);
    }
}

在需要注入bean的地方,使用getBean(bean名称)的方式获取。

MessageTemplateController messageTemplateController = (MessageTemplateController) SpringContextUtil.getBean("messageTemplateController");

springboot使用上下文获取bean的方式你了解了吗?更多springboot常见问题,请继续通过奇Q工具网来进行了解吧。

推荐阅读:

springboot手动获取bean方法

springboot教程要怎么学习?springboot教程学习

springboot优点有哪些?springboot是什么?