|
Hibernate example source code file (PhoneNumber.hbm.xml)
The Hibernate PhoneNumber.hbm.xml source code<?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> <hibernate-mapping> <class name="org.hibernate.test.domain.PhoneNumber" table="PHONE_NUMBERS"> <composite-id> <key-property column="PERSON_ID" name="personId" type="java.lang.Long"/> <key-property column="NUMBER_TYPE" name="numberType" type="java.lang.String"/> </composite-id> <property name="phone" type="java.lang.Long"> <column name="PHONE" precision="22" scale="0"/> </property> </class> </hibernate-mapping> Other Hibernate examples (source code examples)Here is a short list of links related to this Hibernate PhoneNumber.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.