alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Hibernate example source code file (UserGroup.hbm.xml)

This example Hibernate source code file (UserGroup.hbm.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Hibernate tags/keywords

doctype, dtd, group, group, group_id, id, mapping, name, name, user, user, user_id, usergroup, usergroup

The Hibernate UserGroup.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 map a many-to-many
  association with a shared attribute in the primary keys
  of the associated entities.
     
-->

<hibernate-mapping 
	package="org.hibernate.test.manytomany.ordered">


	<class name="User" table="`User`">
        <id name="id" column="ID" type="long">
            <generator class="native"/>
        </id>
        <property name="name" column="NAME"/>
        <property name="org" column="ORG"/>
		<set name="groups" table="UserGroup">
			<key column="USER_ID"/>
			<many-to-many column="GROUP_ID" class="Group"/>
		</set>
	</class>

	<class name="Group" table="`Group`">
        <id name="id" column="ID">
            <generator class="native"/>
        </id>
        <property name="name"/>
		<property name="description"/>
		<bag name="users" table="UserGroup" inverse="true">
			<key column="GROUP_ID"/>
			<many-to-many column="USER_ID" class="User" order-by="NAME"/>
		</bag>
	</class>
	
</hibernate-mapping>

Other Hibernate examples (source code examples)

Here is a short list of links related to this Hibernate UserGroup.hbm.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 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.