Hi, I am playing with H3 and came across something that strange.
I have a property called rValue mapped and the corresponding set/get method for it is: //the get/set methods are auto-generated by a popular IDE
getRValue()
setRValue(value)
And when I try to use this class, I get the following Error:
Caused by: org.hibernate.PropertyNotFoundException: Could not find a getter for rBalance in class XYZ
at org.hibernate.property.BasicPropertyAccessor.createGetter(BasicPropertyAccessor.java:213)
at org.hibernate.property.BasicPropertyAccessor.getGetter(BasicPropertyAccessor.java:207)
But , it works when I rename the get/set methods as follows:
getrValue()
setrValue(value)
Isn't this against the java standards? or Am I missing something?
|