Spring constrction autowired vs property autowired

时间:2013-07-18 21:41:02

标签: spring autowired

这是我的代码

@Autowired
private Temp tempProp;

@Autowired
public Batch(Temp tempConst) {
        System.out.println(tempProp.test);   
}

批处理以XML格式配置,Temp使用@Component批注进行配置。 为什么tempConst正确注入但tempProp仍然为空? 即使我添加带有@autowired注释的setTempProp,tempProp仍为null。

提前致谢。

0 个答案:

没有答案