I am using Hibernate 3.2.5 for my application.
I have a Dept table and an Employees table.
Dept
Employees
Dept.java
I had the same issue.
The reason is my column name in annotation is not correct.
@Column(name = "CUSTOMER_NAME", length = 200)
should be changed to
@Column(name = "CUST_NM", length = 200)