Hi everybody!
I'm getting the following error:
Code:
net.sf.hibernate.PropertyNotFoundException: Could not find a getter for kFactor in class xxx.Share
My hbm.xml contains:
Code:
<property
name="kFactor"
type="java.math.BigDecimal"
column="K_Factor"
length="15"
/>
and the java class is:
Code:
private BigDecimal kFactor;
public BigDecimal getKFactor() {
return this.kFactor;
}
public void setKFactor(BigDecimal kFactor) {
this.kFactor = kFactor;
}
Both java and xml were generated by Hibernate tools, and they seem correct to me, but I think there is some kind of problem with the lowercase/uppercase.
Thanks in advance for your attention and help!