这是我的代码
@Autowired
private Temp tempProp;
@Autowired
public Batch(Temp tempConst) {
System.out.println(tempProp.test);
}
Batch 在 XML 中配置,Temp 使用 @Component 注解配置。为什么 tempConst 注入正确但 tempProp 仍然为空?即使我添加了带有@autowired 注释的 setTempProp,tempProp 仍然为空。
提前致谢。