使用@Component注解时 @Autowired注入为null怎么解决

本文介绍了一个关于天地图工具类中依赖注入的问题及其解决方案。问题出现在尝试使用@Autowired注解注入TmapConfiguration对象时,该对象为null。通过将TmapUtil设置为单例并手动初始化TmapConfiguration,解决了依赖注入的问题。
摘要由CSDN通过智能技术生成

问题代码:

/**
 * 天地图工具类
 *
 * @author ywy
 * @date 2020-08-12
 */
@Component
public class TmapUtil {
 
    @Autowired
    private TmapConfiguration tmapConfiguration;
 
    /**
     * 根据地名获取经纬度
     *
     * @param addr 查询关键字
     * @author ywy
     * @date 2020-08-12
     * @return Map<String, Object>
     * @throws Exception
     */
    public static Map<String, Object> getCoordinateByAddr(String addr) throws Exception {
        Map<String, Object> coordinate = new HashMap<>();
        tmapConfiguration.XXMethod();// 这里会报错tmapConfiguration为null
        /*省略代码*/
        return coordinate;
    }
}

解决代码:

/**
 * 天地图工具类
 *
 * @author ywy
 * @date 2020-08-12
 */
@Component
public class TmapUtil {
 
    @Autowired
    private TmapConfiguration tmapConfiguration;
 
  /*添加代码 begin*/
    private static TmapUtil tmapUtil;
 
    @PostConstruct
    public void init(){
        tmapUtil = this;
        tmapUtil.tmapConfiguration = this.tmapConfiguration;
    }
  /*添加代码 end*/
 
    /**
     * 根据地名获取经纬度
     *
     * @param addr 查询关键字
     * @author ywy
     * @date 2020-08-12
     * @return Map<String, Object>
     * @throws Exception
     */
    public static Map<String, Object> getCoordinateByAddr(String addr) throws Exception {
        Map<String, Object> coordinate = new HashMap<>();
     // 更改调用方式
        tmapUtil.tmapConfiguration.XXMethod();// 这里tmapConfiguration作为tmapUtil的属性调用 不再是null了
        /*省略代码*/
        return coordinate;
    }
}  

 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值