|
Hibernate example source code file (Customer.hbm.xml)
The Hibernate Customer.hbm.xml source code<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<!--
This mapping demonstrates how to use an id class not
embedded in the entity. Only the property values are
shared between the 2. This mimic the EJB2.1 and EJB3
semantic.
-->
<hibernate-mapping package="org.hibernate.test.idclass">
<class name="Customer">
<composite-id class="CustomerId" mapped="true">
<key-property name="orgName" column="org_name"/>
<key-property name="customerName" column="cust_name"/>
</composite-id>
<discriminator column="disc"/>
<property name="address"/>
<subclass name="FavoriteCustomer"/>
</class>
</hibernate-mapping>
Other Hibernate examples (source code examples)Here is a short list of links related to this Hibernate Customer.hbm.xml source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.