applicationContext=null的问题

在对公共模块项目进行拆分细化时,调整启动类位置导致单元测试报错。问题在于bean未初始化。解决方案包括确保启动类位于顶层或使用@ComponentScan指定扫描路径。若启动类不在顶层,则需明确配置@ComponentScan以正确读取组件。
摘要由CSDN通过智能技术生成

问题: 

要对一个公共模块项目,进行一个拆分,做一个细化。调整的时候,调整了启单类的位置(并未注意到),单元测试的时候,就报错。 

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;

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

    public static ApplicationContext getApplicationContext() {
        return applicationContext;
    }

    public static Object getBean(String name) {
        return applicationContext.getBean(name);
    }

    public static <T> T getBean(Class<T> requiredType) {
        return applicationContext.getBean(requiredType);
    }

}

setApplicationContext 调试的时候,方法没进去。说明bean没有初始化。

处理1: 检查目录

启动类要在顶层的位置,这样才会读整个,就不用设置@ComponentScan

处理2:设置@ComponentScan

指定具体读取的路径

@ComponentScan(basePackages = {"com.basic.common"})
public class BasicCommonApplication {

    public static void main(String[] args) {
        SpringApplication.run(BasicCommonApplication.class, args);
    }

    @Bean
    public DozerBeanMapperFactoryBean dozerBeanMapperFactoryBean() {
        return new DozerBeanMapperFactoryBean();
    }

}

总结:

        如果在单个项目中,启动类需要在顶层的位置,才不用设置@ComponentScan,否则需要进行设置,才能读取得到。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

天狼1222

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值