-->
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.  [ 3 posts ] 
Author Message
 Post subject: mapping a HashMap collection to a single row
PostPosted: Wed Apr 09, 2008 6:30 am 
Newbie

Joined: Wed Apr 09, 2008 6:25 am
Posts: 3
hi,

I have a HashMap() with key1, value1..key2,value2...etc
I want to map this to a relational table with columns
key1,key2,..,key n
so data inserted will be value1,value2..,val n

1 complete Hashmap ==> 1 row of table.

Could you show me how to with mapping configuration for hibernate? (.hbm.xml)

Thanks in advance.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 09, 2008 1:11 pm 
Red Hat Associate
Red Hat Associate

Joined: Mon Aug 16, 2004 11:14 am
Posts: 253
Location: Raleigh, NC
You'd need to create your own type. This is done by implementing UserType with your own code that knows how to save and load this information the way you want it. See here:

http://www.hibernate.org/hib_docs/v3/re ... pes-custom

_________________
Chris Bredesen
Senior Software Maintenance Engineer, JBoss


Top
 Profile  
 
 Post subject: mapping a HashMap collection to a single row
PostPosted: Fri Apr 11, 2008 7:29 am 
Newbie

Joined: Wed Apr 09, 2008 6:25 am
Posts: 3
Thanks. That link partially helps.

Consider my scenario -->

Class Child extends Parent{
}

Class Parent{
private [u]transient[/u] Component comp1;
getters..setters..
}

Class Component{
private Component2 comp2;
getters..setters..
}

Class Component2{
private Map members;
getters..setters..
}

Now I want to transform elements of Map ( members) to columns of a row of rdbms table Parent (see thread). So I create CompositeUserType for members.

But for method
public void nullSafeSet(PreparedStatement statement,
Object value...) in
CompositeUserType is invoked with value = null.
When it should have been value = members.

The Problem is because of [u]transient[/u] Component comp1
Note that: comp1 is transient, but Im still passing this object filled with data to Hibernate.

How do I force hibernate to pass transient member to CompositeUserType.nullSafeSet?
(Can I customize the hibernate reflector & will that help?)

.hbm.xml --->

<class name="Parent" table="Parent">
<id column="typed_id" type="long">
<generator class="native"/>
</id>
<discriminator ...>

<component name="comp"
<component name="comp1"

<property name="members" type="MapCompositeUserType">
<column name="col1"/>
<column name="col2"/>
</property>

</component>
</component>

<subclass name="child"/>
</class>


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

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.