自定义类中@Autowired自动注入为null

1、配置文件(类文件所在的包)

<context:component-scan base-package="net.nblh.utils.common" />

2、类文件

关于@PostConstruct:被@PostConstruct修饰的方法会在服务器加载Servlet的时候运行,并且只会被服务器调用一次,类似于Serclet的inti()方法。被@PostConstruct修饰的方法会在构造函数之后,init()方法之前运行。

@Component //申明为spring组件
public class FileHandleUtils{
    @Autowired
    private FileServerManager fileServerManager;
    
    // 静态初使化当前类
    public static FileHandleUtils fileHandleUtils;
    //注解@PostConstruct,这样方法就会在Bean初始化之后被Spring容器执行
    @PostConstruct
    public void init() {
        fileHandleUtils = this;
    }

// 方法调用
    public static void test(String topicId) {
        fileHandleUtils.fileServerManager.uploadById(topicId);
    }
}

你可能感兴趣的:(工作笔记)