我有一个从上下文创建的 bean,之后创建了一个自动装配的成员:
@Service
public class FileDownloadService extends WFWFileDownloadService {
@Autowired
ConfigurationManager configurationManager;
当我在代码中使用手动构造函数调用时:
FileDownloadService fileDownloadService = new FileDownloadService();
我看到 configurationManager 为空,所以我必须进行手动接线:
public FileDownloadService() {
configurationManager = new ConfigurationManagerImpl();
}
使自动装配与手动创建一起工作我做错了什么?