I have a class that looks like the following:
public class MyClass { private String dPart1; public String getDPart1() { return dPart1; }
From what I've seen, Hibernate (at least version 3.2.4) will expect a property like dPart to have a getter named getdPart: d stays lowercase. Look at dfa's answer as well - I am guessing that other versions might expect getDpart instead.