I'm taking over an existing Java EE project which uses Hibernate session factory with .hbm.xml files. I want to convert this project so as to use annotations and replace xml files and ultimately use EntityManager (factory) instead of Hibernate session manager.

Both the existing code and the database does not seem to have been designed very well. Therefore with reverse engineering tools, I'm not getting reliable results. Before optimizing, I want to achieve exact conversion (manually re-writing the code) in order to sustain the existing functionality (i.e. not to take the risk of breaking up the operation of existing controller classes with these entities).

One issue I've encountered is that I cannot decide whether to use an @EmbeddedId or an @IdClass (maybe even choose to use Natural Ids) for converting certain entities.

Can anyone advise on which is the best way to annotate the composite id which was originally defined in the .hbm.xml file below?

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!-- Generated 24-Mar-2011 16:50:14 by Hibernate Tools 3.2.1.GA -->
<hibernate-mapping>
    <class name="QuotePriceRange" table="QUOTE_PRICE_RANGE" schema="dbo" catalog="teklif">
        <composite-id name="id" class="QuotePriceRangeId">
            <key-property name="productCodeStr" type="string">
                <column name="PRODUCT_CODE_STR" length="4" />
            </key-property>
            <key-property name="priceType" type="string">
                <column name="PRICE_TYPE" length="3" />
            </key-property>
        </composite-id>
        <many-to-one name="productCode" class="ProductCode" update="false" insert="false" fetch="select">
            <column name="PRODUCT_CODE" length="4" not-null="true" />
        </many-to-one>
        <property name="minPrice" type="big_decimal">
            <column name="MIN_PRICE" precision="20" not-null="true" />
        </property>
        <property name="maxPrice" type="big_decimal">
            <column name="MAX_PRICE" precision="20" not-null="true" />
        </property>
    </class>
</hibernate-mapping>

The entity POJO class:

public class QuotePriceRange  implements java.io.Serializable {

     private QuotePriceRangeId id;
     private ProductCode productCode;
     private BigDecimal minPrice;
     private BigDecimal maxPrice;

    public QuotePriceRange() {
    }

    public QuotePriceRangeId getId() {
        return this.id;
    }

    public void setId(QuotePriceRangeId id) {
        this.id = id;
    }

    public BigDecimal getMaxPrice() {
        return maxPrice;
    }

    public void setMaxPrice(BigDecimal maxPrice) {
        this.maxPrice = maxPrice;
    }

    public BigDecimal getMinPrice() {
        return minPrice;
    }

    public void setMinPrice(BigDecimal minPrice) {
        this.minPrice = minPrice;
    }

    public ProductCode getProductCode() {
        return productCode;
    }

    public void setProductCode(ProductCode productCode) {
        this.productCode = productCode;
    }
 }

The PK class bound:

public class QuotePriceRangeId  implements java.io.Serializable {

          private String productCodeStr;
     private String priceType;

    public QuotePriceRangeId() {
    }

    public QuotePriceRangeId(String productCodeStr, String priceType) {
       this.productCodeStr = productCodeStr;
       this.priceType = priceType;
    }

    public String getProductCodeStr() {
        return this.productCodeStr;
    }

    public void setProductCodeStr(String productCodeStr) {
        this.productCodeStr = productCodeStr;
    }
    public String getPriceType() {
        return this.priceType;
    }

    public void setPriceType(String priceType) {
        this.priceType = priceType;
    }

    // overriden equals and hashcode method implementations
}

The database is SYBASE ASE (v15).

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.