|
From: Barry K. <gr...@me...> - 2004-08-02 23:40:28
|
I take it back. I still get the error. Does anybody see what I might be
doing wrong?
<bean id="com.its.formatter" lazy-init="true">
<property name="foo">
<ref bean="com.its.foo"/>
</property>
<property name="bar">
<ref bean="com.its.bar"/>
</property>
</bean>
<bean id="com.its.fixedWidthFormatter"
parent="com.its.formatter"
class="com.its.FixedWidthFormatter">
</bean>
<bean id="com.its.variableWidthFormatter"
parent="com.its.formatter"
class="com.its.VariableWidthFormatter">
</bean>
|