vote up 1 vote down star

I want to do something like this:

    @Entity public class Bar {
        @Id @GeneratedValue long id;
        List<String> Foos
    }

and have the Foos persist in a table like this:

foo_bars (
    bar_id int, 
    foo varchar(64)
);

UPDATE:

I know how to map other entities, but it's overkill in many cases. It looks like what I'm suggesting isn't possible without creating yet another entity or ending up with everything in some blob column.

flag

5 Answers

vote up 2 vote down check

This is in Hibernate terms a "collection of values" or "elements". There is a (Hibernate specific) annotation for it. JPA does not support this (yet).

In short, annotate your collection like this:

@CollectionOfElements
@JoinTable(
        table=@Table(name="..."),
        joinColumns = @JoinColumn(name="...") // References parent
)
@Column(name="...value...", nullable=false)

This will create the necessary table with foreign keys and restrictions.

link|flag
vote up 0 vote down

create an entity 'FooBars'

refactor the attribut 'Foos' to

@OneToMany List Foos

link|flag
Thanks, Michael, but I was hoping to avoid another entity here.. I really only need the string in any case.. I was hoping to get hibernate to deal it all for me. – danb Apr 28 at 15:25
vote up 0 vote down

I'm think it's that what you need:

@Entity 
public class Bar {
    @Id @GeneratedValue long id;

    @OneToMany(mappedBy="bar")   //"bar" = field name in mapping class
    List<FooBar> Foos;
}

@Entity 
public class FooBar {
    @Id @GeneratedValue long id;

    @ManyToOne
    @JoinColumn(name="bar_Id")  
    Bar bar;
}
link|flag
thanks Vanger, but I was hoping to avoid another entity here.. I really only need the string in any case.. I was hoping to get hibernate to deal it all for me. – danb Apr 28 at 15:26
vote up 0 vote down

If you store your list as an array, it works:

setFoos(String[] foos);

you can transform it like this:

setFoos(myList.toArray(new String[myList.size()]));
link|flag
vote up 0 vote down

I sometimes prefer persisting such collections as @Lobs (i.e. serializing them in the database)

link|flag
difficult to query effectively like that... – danb Nov 18 at 15:50
Yes, if you will make queries, this is not an option. – Bozho Nov 18 at 16:00

Your Answer

Get an OpenID
or

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