I have defined a custom user type that works fine when used properties of my entities. For instance:

 <class name="com.my.sample" table="MY_TABLE">
    ...
    <property name="foo" type="myCustomUserType">
 </class>

I'm needing something like this:

 <class name="com.my.sample" table="MY_OTHER">
    ...
    <component name="myAddress" class="com.my.sample.Address">
       <property name="street" column="MY_OTHER_ADRR_STREET" />
       <property name="foo" type="myCustomUserType" column="MY_OTHER_ADRR_COLUMN" />
    </component>
 </class>

Obviously, I'm supposing that myCustomUserType is properly defined in the .HBM file. Is it possible to map a <component> property like this?

link|improve this question

50% accept rate
1  
Have you tried it? It should work fine. – matt b Apr 8 '11 at 19:35
feedback

1 Answer

up vote 0 down vote accepted

Actually, it works fine. It is also possible to map <component> properties using relationships such as <many-to-one>. The mapping was somethig like this:

<component name="myAddress" class="com.my.sample.Address" >
    <property name="aSimpleDate" column="TBL_ADDR_SIMPLE_DATE" type="date" />
    <many-to-one class="OtherClass" name="otherClass" >
        <column name="TBL_ADDR_OTHER_CLASS_ID" precision="9" scale="0"/>
    </many-to-one>
    <property name="foo" column="TLB_ADDR_FOO" type="myCustomUserType" />
</component>

Unfortunatelly, the Hibernate documentation is not very obvious about this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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