org.hibernate.PropertyNotFoundException
- by niru
hi i am new to hibernate, i m using the following code and getting the following error
public class OperProfile {
private String empId;
private long age;
private String name;
public long getAge() {
return age;
}
public void setAge(long age) {
this.age = age;
}
public String getEmpId() {
return empId;
}
public void setEmpId(String…