|
From: Assaf U. <as...@jo...> - 2004-10-22 08:33:10
|
Testing IDE update 1.1.0.
I have the following two bean definitions:
<bean id="formulaireAbstrait"
class="com.joliciel.aplikaterm.web.FormulaireAbstrait" abstract="true">
<property name="localeResolver"><ref
local="localeResolver"/></property>
</bean>
<bean id="authentifier"
class="com.joliciel.aplikaterm.web.FormulaireAuthentifier"
parent="formulaireAbstrait">
<property name="formView"><value>login</value></property>
<property name="successView"><value>accueil</value></property>
<property name="serviceUtilisateur"><ref
local="serviceUtilisateur"/></property>
</bean>
I get the following complaint:
No setter for property "serviceUtilisateur" found in class
"com.joliciel.aplikaterm.web.FormulaireAbstrait"
While it is true that the parent (FormulaireAbstrait) has no such
property, the child (FormulaireAuthentifier) does have the property, and
actual Spring configuration works fine.
So it looks like the IDE is only searching for properties on the parent,
not the child.
Best regards,
Assaf
|