开发者

Hibernate Mapping Conditional Many-To-One

开发者 https://www.devze.com 2022-12-12 06:11 出处:网络
I have to map a lecagy database for read-only purposes that contains the following structure: Table MAIN:

I have to map a lecagy database for read-only purposes that contains the following structure:

Table MAIN: 
id productId productType

Table PRODUCT_A: 
id description_a

Table PRODUCT_B: 
id description_b

Table PRODUCT_C: 
id description_c

Depending on the value in column productTyp, the productId refers either to the PRODUCT_A,PRODUCT_B, or PRODUCT_C.

For each of the tables I create a Java entity. The Main class contains one collection for each product.

The products are not in a 'is a' relationship with the main class. It is used under ot开发者_JS百科her circumstance as independent entity.

Is there any way to map this using hbm.xml files?


Look like you are looking for inheritance using the table per sub class strategy using a discriminator. In Java each PRODUCT_X class should extend the Main class. This page explains the details of implementing this strategy.


The proper way to map this is via <any>:

<class name="Main" table="MAIN">
  ...
  <any name="product" id-type="long" meta-type="string">
    <meta-value value="PRODUCT_A" class="ProductA"/>
    <meta-value value="PRODUCT_B" class="ProductB"/>
    <meta-value value="PRODUCT_C" class="ProductC"/>
    <column name="productType"/>
    <column name="productId"/>
  </any>
</class>

You'll have to map the appropriate ProductA etc... classes to corresponding tables (perhaps you already have).

0

精彩评论

暂无评论...
验证码 换一张
取 消