欢迎来到天天文库
浏览记录
ID:34723258
大小:325.68 KB
页数:10页
时间:2019-03-10
《hibernate注解简介》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、·全面讲解HibernateAnnotations这里介绍HibernateAnnotations,HibernateUtil.java也就是Hibernate文档中推荐的工具类,Person.java一个持久化的类。Hibernate还是比较常用的,于是我研究了一下HibernateAnnotations,在这里拿出来和大家分享一下,希望对大家有用。我们看看利用HibernateAnnotations如何做,只要三个类不再需要hbm.xml配置文件:还要把用到的两个jar文件放入的类路径中.具体如何做,请参考 Hibernate
2、Annotations中文文档.HibernateUtil.java也就是Hibernate文档中推荐的工具类,Person.java一个持久化的类,Test.java测试用的类.都在test.hibernate.annotation包中.每个类的代码如下:1.package test.hibernate.annotation; 2. 3.import org.hibernate.HibernateException; 4.import org.hibernate.Session; 5.import org.hibernate.S
3、essionFactory; 6.import org.hibernate.cfg.AnnotationConfiguration; 7.import org.hibernate.cfg.Configuration; 8. 9.public class HibernateUtil { 10.public static final SessionFactory sessionFactory; 11. 12.static { 13.try { 14.sessionFactory = new AnnotationConfiguratio
4、n() 15.//注意: 建立 SessionFactory于前面的不同 16..addPackage("test.hibernate.annotation") 17..addAnnotatedClass(Person.class) 18. 19..configure() 20..buildSessionFactory(); 21.//new Configuration().configure().buildSessionFactory(); 22.} 23.catch (HibernateException e) { 2
5、4.// TODO Auto-generated catch block 1. 2.e.printStackTrace(); 3.throw new ExceptionInInitializerError(e); 4.} 5.} 6. 7.public static final ThreadLocal session = new ThreadLocal(); 8. 9.public static Session currentSession() throws HibernateException
6、 { 10.Session s = session.get(); 11. 12.if(s == null) { 13.s = sessionFactory.openSession(); 14.session.set(s); 15.} 16. 17.return s; 18.} 19. 20.public static void closeSession() throws HibernateException { 21.Session s = session.get(); 22.if(s != null) { 23.s.close(
7、); 24.} 25.session.set(null); 26.} 27.} 不需要了hbm.xml映射文件,是不是简单了一些.给人认为简化了一些不是主要目的.主要是可以了解一下EJB3的持久化机制,提高一下开发效率才是重要的.好了.HibernateAnnotations的例子就完了【编辑推荐】Hibernate3.2Annotation-HelloWorld文章分类:Java编程关键字:hibernate3.2Hibernate是ORM的解決方案,其底層對資料庫的操作依賴於JDBC,所以您必須先取得JDBC驅動程式,在這邊所
8、使用的是MySQL,所以您必須至MySQL®Connector/J取得MySQL的JDBC驅動程式。 接下來至Hibernate官方網站取得Hibernate3.2、HibernateAnnotations3.2。 您必須安裝JDK5.0才可以使用
此文档下载收益归作者所有