-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Can Hibernate map a Map<?, Set<?>>?
PostPosted: Wed Oct 01, 2008 2:45 pm 
Newbie

Joined: Wed Oct 01, 2008 2:27 pm
Posts: 18
Code:
class Foo {
  int id;
  Map<String, Set<Bar>> bars;
}

class Bar {
  int id;
}


Code:
create table foo (id int);
create table foo_bar (foo_id int, key varchar, bar_id int);
create table bar (id int);


Looking at the documentation, it seems you'd have to introduce a FooBar class and replace the map (or use some kind of post-load/pre-update listener to keep it in sync, ugh). But maybe there is a better way?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.