how can i map a list of integers in Hibernate?? tanx!
like this:
@Entity
class A{
List<Integer> p;
@OneToMany
getP(...){..};
setP(...){..};
}
|
|
|
Use @ElementCollection mapping. See documentation |
|||
|
|
|
You can use element collection instead of creating separate entity, this will have true composition. refer to doc |
|||
|
|
|
Create a new entity that contains the integer as a field value, then map to a List of that entity rather than Integer. |
|||||||||
|
|
You will have to invent a new table that stores those IDs and link that table as a regular @OneToMany relation.
Just like any other table that has a OneToMany relation to the A Entity. There is no "list" construct in databases. Sebastian |
|||
|