I have a property called isActive in my pojo class. When I generated the accessors for this property using Eclipse IDE, it generates following getters and setters
Getter : isActive()
Setter : setActive()
However, when I try to write this property using ibatis framework by mentioning property name as "isActive" , it cribs about not able to find any WRITEABLE propery named 'isActive'. The problem I think lies with not able to deduce the correct property name by inferring setter as setIsActive().
What is the best way to go about this without changing the property name or getter ?
isActive(), isn't your property nameactivethen? – biziclop Jan 31 '11 at 13:27active, no matter by what instance field it's backed. It's even possible that there is no field backing your property, e.g. propertyhours(deprecated) injava.util.Date. – adamax Jan 31 '11 at 14:15