I have a property called isActive in my pojo class. When I created accessors for this property using the Eclipse IDE, it generates the following getters and setters
Getter : isActive()
Setter : setActive()
However, when I try to write this property using the ibatis framework, specifying the property name as "isActive", it reveals that it cannot find a WRITEABLE named "isActive". The problem, I think, is that you cannot output the correct property name by outputting setter as setIsActive ().
What is the best way to get around this without changing the name of the property or getter?
source
share