快速业务通道

Hibernate Annotations实战--从hbm.xml到Annotations - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-15
e="test.hibernate.Person" table="person"> <id name="id" type="integer"> <column name="id" /> <generator class="native"></generator> </id> <property name="name" type="string"> <column name="name" /> </property> <property name="sex" type="string"> <column name="sex" /> </property> <property name="age" type="integer"> <column name="age" /> </property> <bag name="list" cascade="all"> <key column="person"></key> <one-to-many class="test.hibernate.Person"/> </bag> </class> </hibernate-mapping>

下面让我们看看利用 Hibernate Annotations 如何做,只要三个类 不再需要 hbm.xml配置文件:

还要把用到的两个jar文件 放入的类路径中. 具体如何做,请参考 Hibernate Annotations 中文文档

http://hibernate.6644.net

HibernateUtil.java 也就是 Hibernate文档中推荐的工具类,Person.java 一个持久化的类, Test.java 测试用的类.都在test.hibernate.annotation 包中. 每个类的代码如下:

HibernateUtil

01 package test.hibernate.annotation; 02 03 import org.hibernate.HibernateException; 04 import org.hibernate.Session; 05 import org.hibernate.SessionFactory; 06 import org.hibernate.cfg.AnnotationConfiguration; 07 import org.hibernate.cfg.Configuration; 08 09 public class HibernateUtil { 10  public static final SessionFactory sessionFactory; 11 12  static { 13   try { 14    sessionFactory = new AnnotationConfiguration()  //注意: 建立 SessionFactory于前面的不同 15         .addPackage("test.hibernate.annotation") 16         .addAnnotatedClass(Person.class) 17 18         .configure() 19         .buildSessionFactory(); 20     //new Configuration().configure().buildSessionFactory(); 21   } catch (HibernateException e) { 22    // TODO Auto-generated catch block 23 24    e.printStackTrace(); 25    throw new ExceptionInInitializerError(e); 26   } 27  } 28 29  public static final ThreadLocal<Session> session = new ThreadLocal<Session>(); 30 31  public static Session currentSession() throws HibernateException { 32   Session s = session.get(); 33 34   if(s == null) { 35    s = sessionFactory.openSession(); 36    session.set(s); 37   } 38 39   return s; 40  } 41 42  public static void closeSession() throws HibernateException { 43   Session s = session.get(); 44   if(s != null) { 45    s.close(); 46   } 47   session.set(null); 48  } 49 }

Hibernate Annotations实战--从hbm.xml到Annotations(5)

时间:2011-07-28

Person:

01 package test.hibernate.annotation; 02 03 import java.util.LinkedList; 04 import java.util.List; 05 06 import javax.persistence.AccessType; 07 import javax.persistence.Basic; 08 import javax.persistence.Entity; 09 import javax.persistence.GeneratorType; 10 import

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号