First of all, please forgive my ignorance in both Java and Hibernate, I'm studying different ORM solutions and am not a Java programmer.

1) Is it possible to map the following class hierarchy to a database table, with Person.name and Employee.name pointing to different columns?

abstract public class Person {
        private String name;
}

public class Employee extends Person {
        private String name;
}

2) Supposing that the answer to 1) is Yes, is there a way to create a DQL or Criteria query which would ask Hibernate to return Employee objects, with a criterion on Person.name?

Something like that:

SELECT e FROM Employee e WHERE e.super.name = "test";
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted
+100

1) Yes. This can be accomplished via a MappedSuperClass, and annotating your columns

@MappedSuperClass
abstract public class Person { 
  @Column(name="PERSON_NAME")
  private String name; 
}
@Entity
public class Employee extends Person {
        @Column(name="EMPLOYEE_NAME")
        private String name;
}

2) No. Not without changing the attribute names of one of either Person or Employee. You could however query for all person objects with that name and cast the results to Employees. Another option would be to use Native SQL to query teh column you want, again probably not ideal.

SELECT p FROM Person p WHERE p.name = "test";
link|improve this answer
Thank you. That means that p.name maps to two different columns in the DQL query, depending on the "FROM" class? – Benjamin Sep 1 '11 at 17:27
Yes p.name qualifies it to a "Person", so JPA knows to map that to PERSON_NAME. – Terrell Plotzki Sep 1 '11 at 17:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.