|
Hibernate example source code file (Account.hbm.xml)
The Hibernate Account.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.Account" table="ACCOUNT" lazy="false"> <id name="id" column="ACCOUNT_ID"> <generator class="native"/> </id> <many-to-one name="person" class="org.hibernate.test.domain.Person" cascade="save-update,lock" column="person_id" unique="true" not-null="true"/> </class> </hibernate-mapping> Other Hibernate examples (source code examples)Here is a short list of links related to this Hibernate Account.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.