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