|
Hibernate example source code file (Person.hbm.xml)
The Hibernate Person.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.Person" table="PERSON" lazy="true"> <id name="id" column="PERSON_ID"> <generator class="native"/> </id> <property name="age"/> <property name="firstname"/> <property name="lastname"/> <list name="events" table="PERSON_EVENT" lazy="true"> <key column="PERSON_ID"/> <list-index column="EVENT_ORDER"/> <many-to-many column="EVENT_ID" class="org.hibernate.test.domain.Event"/> </list> <bag name="talismans" table="PERSON_TALISMAN" lazy="true"> <key column="PERSON_ID"/> <element type="string" column="TALISMAN_NAME"/> </bag> <set name="emailAddresses" table="PERSON_EMAIL_ADDR" lazy="true"> <key column="PERSON_ID"/> <element type="string" column="EMAIL_ADDR"/> </set> <set name="phoneNumbers" cascade="all" lazy="true"> <key column="PERSON_ID"/> <one-to-many class="org.hibernate.test.domain.PhoneNumber"/> </set> </class> </hibernate-mapping> Other Hibernate examples (source code examples)Here is a short list of links related to this Hibernate Person.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.