关于@Component注解下的@Autowired注解下的类注入为null的解决方案

关于@Component注解下的@Autowired注解下的类注入为null的解决方案

今天在测试一个写完的的工具类时,发现工具类里面使用@Autowired注解自动注入的一个jpa数据库接口怎么测试都是null。
后来到网上找了好多帖子,终于找到解决方案

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.zimax.cqyf.db.entity.Equipment;
import com.zimax.cqyf.db.service.IEquipmentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
import java.time.LocalDateTime;
import java.util.List;
import java.util.Map;
@Component
public class MonitorSyncUtil {

    @Autowired
    IEquipmentService equipmentService;
    private static MonitorSyncUtil monitorSyncUtil;
    @PostConstruct
    public void init() {
        monitorSyncUtil = this;
        monitorSyncUtil.equipmentService = this.equipmentService;
    }

    @Scheduled(cron = "0 30 8,13 * * ? ")
    public void sync(){
        JSONObject jsonObject = ArtemisParamUtil.cameras();
        String result = ArtemisPostUtil.callPostStringApi(jsonObject, "/api/resource/v1/cameras");
        ......
    }
}

1. 正常添加@Component注解并通过@Autowired注入类
2.实例化当前类
在这里插入图片描述
3.通过@PostConstruct注解初始化实现类注入
在这里插入图片描述


版权声明:本文为sll714827原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。