Posted By:
Mike_Reynolds
Posted On:
Wednesday, February 27, 2002 08:01 AM
I'm experiencing some strange behavior regarding getting a property from a bean on my form. On the form, there is a Candidate bean. The Candidate bean has getAddresses and setAddresses . I'm getting the "No getter for property addresses" error. The strange thing is: If I then copy the getAddresses and setAddresses methods and rename them to getAddresses2 and setAddresses2 , and use addresses2 as my property in the jsp, then all works. I'm wondering if a bad method definition somehow got cached? and if so, is there any way to clear the cache? Thanks in advance, Mike
More>>
I'm experiencing some strange behavior regarding getting a property from a bean on my form.
On the form, there is a Candidate bean. The Candidate bean has
getAddresses
and
setAddresses
. I'm getting the "No getter for property addresses" error.
The strange thing is:
If I then copy the
getAddresses
and
setAddresses
methods and rename them to
getAddresses2
and
setAddresses2
, and use addresses2 as my property in the jsp, then all works. I'm wondering if a bad method definition somehow got cached? and if so, is there any way to clear the cache?
Thanks in advance, Mike
<<Less