热门标签 | HotTags
当前位置:  开发笔记 > Android > 正文

Hibernate4中buildSessionFactory方法废弃问题。

在用Hibernate4时会发现:<SPANstyle"FONT-SIZE:18px">SessionFactorysessionFactorynewAnnotationConfiguration().configure().buildSessionFactory();</SPAN

在用Hibernate4时会发现:
 

SessionFactory sessiOnFactory= new AnnotationConfiguration().configure().buildSessionFactory(); 

SessionFactory sessiOnFactory= new AnnotationConfiguration().configure().buildSessionFactory();buildSessionFactory()废弃,相信很多人会觉得为什么废弃这方法,查了网上的资料,综合如下:

 


     Hibernate给了个ServiceRegistry,然后拿到sessionFactory是通过:

 SPAN style="FONT-SIZE: 18px">  @BeforeClass 
    public static void beforeClass() { 
        Configuration cOnfiguration= new Configuration(); 
        //new SchemaExport(new AnnotationConfiguration().configure()).create(false, true);  
        //sessiOnFactory= new AnnotationConfiguration().configure().buildSessionFactory();  
        ServiceRegistry serviceRegistry = new ServiceRegistryBuilder().applySettings(configuration.getProperties()).buildServiceRegistry(); 
        SessionFactory sessiOnFactory= configuration.buildSessionFactory(serviceRegistry); 
     

 @BeforeClass
 public static void beforeClass() {
  Configuration cOnfiguration= new Configuration();
  //new SchemaExport(new AnnotationConfiguration().configure()).create(false, true);
  //sessiOnFactory= new AnnotationConfiguration().configure().buildSessionFactory();
  ServiceRegistry serviceRegistry = new ServiceRegistryBuilder().applySettings(configuration.getProperties()).buildServiceRegistry();
  SessionFactory sessiOnFactory= configuration.buildSessionFactory(serviceRegistry);
 

 

 

像网友说的具有注册表存储库功能,功能更多了,上面的方法废弃,其实是hibernate想你用这个类,因为他们写了个更好的东西出来。原来是这样。其实里面的源码还是:

 SPAN style="FONT-SIZE: 18px">package cn.framework.dao.util; 
import org.hibernate.HibernateException; 
import org.hibernate.SessionFactory; 
import org.hibernate.cfg.Configuration; 
import org.hibernate.service.ServiceRegistry; 
import org.hibernate.service.ServiceRegistryBuilder; 
public class HibernateUtil { 
  
 public static SessionFactory sessiOnfactory= null; 
 static { 
  try { 
   // 通过hibernate.cfg.xml 产生一个SessionFactory  还是和原来的方法一样的。。  
   sessiOnfactory= new Configuration().configure().buildSessionFactory(); 
  } catch (Throwable ce) { 
   ce.printStackTrace(); 
  } 
 } 

package cn.framework.dao.util;
import org.hibernate.HibernateException;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import org.hibernate.service.ServiceRegistry;
import org.hibernate.service.ServiceRegistryBuilder;
public class HibernateUtil {
 
 public static SessionFactory sessiOnfactory= null;
 static {
  try {
   // 通过hibernate.cfg.xml 产生一个SessionFactory  还是和原来的方法一样的。。
   sessiOnfactory= new Configuration().configure().buildSessionFactory();
  } catch (Throwable ce) {
   ce.printStackTrace();
  }


 }还是用到我们上面所谓的废弃的方法。

 


这里有篇文章详细介绍了ServiceRegistry。有兴趣的可以看看。


 


推荐阅读
  • 获取年月日,之前的日期不能选择日历cCalendar.getInstance();获取系统的工具类【可以获取时间】DatePickerDialogdate ... [详细]
  • 在使用Postman进行接口测试时,如果携带大量参数,可能会遇到‘请求头过大’的问题。本文将详细介绍如何调整Tomcat的请求头大小限制,并提供有效的路径映射解决方案,以避免因路径配置不当导致的404错误。 ... [详细]
  • django项目中使用手机号登录
    本文使用聚合数据的短信接口,需要先获取到申请接口的appkey和模板id项目目录下创建ubtils文件夹,定义返回随机验证码和调取短信接口的函数function.py文件se ... [详细]
  • 深入理解SAP Fiori及其核心概念
    本文详细介绍了SAP Fiori的基本概念、发展历程、核心特性、应用类型、运行环境以及开发工具等,旨在帮助读者全面了解SAP Fiori的技术框架和应用场景。 ... [详细]
  • Python安全实践:Web安全与SQL注入防御
    本文旨在介绍Web安全的基础知识,特别是如何使用Python和相关工具来识别和防止SQL注入攻击。通过实际案例分析,帮助读者理解SQL注入的危害,并掌握有效的防御策略。 ... [详细]
  • Linux环境下的PHP7安装与配置指南
    本文详细介绍了如何在Linux操作系统中安装和配置PHP7,包括检查当前PHP版本、升级PHP以及配置MySQL支持等步骤,适合后端开发者参考。 ... [详细]
  • 本文总结了几个常用的Android开发技巧,包括检测设备上是否安装特定应用、获取应用的版本名称、设置状态栏透明以及如何从一个应用跳转至另一个应用的方法。 ... [详细]
  • 本文探讨了在使用 ClickOnce 部署方式时遇到的自动更新失败问题,包括本地安装与服务器安装的不同表现,并提供了详细的解决方案。 ... [详细]
  • 这个报错出现在userDao里面,sessionfactory没有注入。解决办法:spring整合Hibernate使用test测试时要把spring.xml和spring-hib ... [详细]
  • Android开发经验分享:优化用户体验的关键因素
    随着Android市场的不断扩展,用户对于移动应用的期望也在不断提高。本文探讨了在Android开发中如何优化用户体验,以及为何用户体验的重要性超过了技术本身。 ... [详细]
  • PHP 5.4.8 编译安装指南
    本文详细介绍了如何在Linux环境下编译安装PHP 5.4.8,并配置为FastCGI模式运行。包括所需依赖包的安装、源代码下载、编译配置及启动服务等步骤。 ... [详细]
  • 本文详细介绍了Java中com.sun.xml.bind.v2.runtime.XMLSerializer类下的childAsRoot()方法,并提供了多个实际应用的代码示例,帮助开发者更好地理解和使用该方法。 ... [详细]
  • 解析 HTTP 头 'Vary: Accept-Encoding' 的作用与重要性
    本文详细探讨了 'Vary: Accept-Encoding' HTTP 头的作用,即指导缓存系统(如代理服务器和 CDN)根据不同的编码需求存储和提供适当的资源版本,确保不同类型的客户端能够接收到适合自己的内容。 ... [详细]
  • 拖拉切割直线 ... [详细]
  • 本文详细介绍如何在Spring Boot项目中集成和使用JPA,涵盖JPA的基本概念、Spring Data JPA的功能以及具体的操作步骤,帮助开发者快速掌握这一强大的持久化技术。 ... [详细]
author-avatar
思恋相依相惜
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有