Re: cannot write to property without a setter

2007-02-07 Thread Larry Meadors
That is an interesting pattern - you can't change bah, but you can change it's properties. That *should* work, IMO. Can you add an issue in JIRA for that? Larry On 2/6/07, Reuben Firmin <[EMAIL PROTECTED]> wrote: Let's say I have a class structure as per below. Ibatis doesl not seem to let me

RE: cannot write to property without a setter

2007-02-06 Thread Daniel Pitts
write to property without a setter I have never tried to do what you say in Spring. In fact I have never tried it at all :) My personal opinion is that you should never try and inject into private properties. Follow the bean specs and all will be well. Nathan On 2/6/07, Reuben Firmin &l

Re: cannot write to property without a setter

2007-02-06 Thread Nathan Maves
I have never tried to do what you say in Spring. In fact I have never tried it at all :) My personal opinion is that you should never try and inject into private properties. Follow the bean specs and all will be well. Nathan On 2/6/07, Reuben Firmin <[EMAIL PROTECTED]> wrote: Let's say I ha

cannot write to property without a setter

2007-02-06 Thread Reuben Firmin
Let's say I have a class structure as per below. Ibatis doesl not seem to let me address the path foo.bah.someProperty, because there is no setter (Foo#setBah). Specifically, I get "com.ibatis.common.beans.ProbeException: There is no WRITEABLE property". Spring, on the other hand, is fine with t