spring boot 使用ApplicationContextAware获取bean

学习使用spring boot 手动获取bean值的问题

1.测试类

@SpringBootApplication
public class BootDemoApplication {

    public static void main(String[] args) {
//       ApplicationContext context =  SpringApplication.run(BootDemoApplication.class, args);
//       MessageSender messageSender =(MessageSender)context.getBean(MessageSender.class);
//       System.out.println("MessageSender===="+messageSender);
        SpringApplication.run(BootDemoApplication.class, args);
        
        ApplicationContext con= SpringUtil.getApplicationContext();
        MessageSender messageSender =(MessageSender)con.getBean(MessageSender.class);
        System.out.println("MessageSender===="+messageSender);
        messageSender.send();
    }

2.写个工具类

@Component
public class SpringUtil  implements ApplicationContextAware {
    private  static ApplicationContext applicationContext;
    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        if(applicationContext==null) {
            this.applicationContext= applicationContext;
        }
    }
    public static ApplicationContext getApplicationContext(){
        return applicationContext;
    }
    public static Object getBean(String name){
        return applicationContext.getBean(name);
    }
    //通过class获取Bean.
    public static <T> T getBean(Class<T> clazz){
        return getApplicationContext().getBean(clazz);
    }

}

注意:看着网上写了个这个示例。调试发现怎么都获取不到ApplicationContext ,调试半天也没发现那里有问题。

最后发现是因为

@Override public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { if(applicationContext==null) { this.applicationContext= applicationContext; } }

这段代码中的参数变量不能和静态变量名相同。导致获取为null。你们是这样吗?

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值