Re: Map mapping

2008-11-13 Thread Pinaki Poddar
use @ElementDependent annotation. For further details, please refer [1] [1] http://openjpa.apache.org/builds/latest/docs/manual/manual.html#dependent -- View this message in context: http://n2.nabble.com/Map-mapping-tp1493207p1493485.html Sent from the OpenJPA Users mailing list archive at

Map mapping

2008-11-12 Thread Andreas Prudzilko
Hi, I have a slight problem with map mappings. public class Item extends BusinessDomainObject { private Map values = new HashMap(); @OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL) public Map getValues() {return values;} } and: public abstract class Value ext