Hibernate - PropertyNotFoundException: Could not find a getter for ...
- by Ben Noland
I have a class that looks like the following:
public class MyClass {
private String dPart1;
public String getDPart1() {
return dPart1;
}
public void setDPart1(String dPart1) {
this.dPart1 = dPart1;
}
}
My hibernate mapping file maps the property as follows:
<property name="dPart1" not-null="true"/>
I get…