<bean id="publiclogtest" class="cn.stargis.estar.basic.log.service.impl.PublicLogTest">
<property name="myDoLogTest" ref="dologtest"></property>
使用<property> 是 因为在PublicLogTest 类中有 一个其他类的实例(private xx xx);并且,这个实例的命名叫为 myDoLogTest,即 private 类名 myDoLogTest; ref 是此句之前的一个bean,这个bean负责首次注入这个类。
并且需要保证的是 <property>中的类 在此句之前已经被注入,并且,这个类中所有set,get方法已经正确实现,在实现过程中需要注意 set后的实例首字母需要大写。
原文链接:https://www.f2er.com/javaschema/284338.html