zoukankan      html  css  js  c++  java
  • hibernate4.0+版本和3.0+版本的区别总结

    自己总结下hibernate4.1版本中的新特性和hibernate3.3做区别

    1.数据库方言设置

    <property name=”dialect”>org.hibernate.dialect.MySQL5Dialect</property>

    在3.3版本中连接MySQL数据库只需要指明MySQLDialect即可。在4.1版本中可以指出MySQL5Dialect

    2.buildSessionFactory

    4.1版本中buildSessionFactory()已经被buildSessionFactory(ServiceRegistry ServiceRegistry)取代

    解决办法:

    Configuration cfg = new Configuration();

    cfg.configure();//不要缺少或写在下面,这个是configure和serviceregistry之间
    ServiceRegistry serviceRegistry =new ServiceRegistryBuilder().applySettings(cfg.getProperties()).buildServiceRegistry();

    SessionFactory sf = cfg.configure().buildSessionFactory(serviceRegistry);

    3.annotation

    org.hibernate.cfg.AnnotationConfiguration;

    Deprecated. All functionality has been moved to Configuration

    这个注解读取配置的class已经废弃,现在读取配置不需要特别注明是注解,直接用Configuration cfg = new Configuration();就可以读取注解。

    Hibernate4.1版本中推荐使用annotation配置,所以在引进jar包时把requested里面的包全部引进来就已经包含了annotation必须包了

    4.Hibernate4.1已经可以自动建表,所以开发时只需要自己开发类然后配置好就OK。不需要考虑怎么建表

  • 相关阅读:
    Linux netstat 命令入门知识
    Linux文件预读对系统的影响
    Ubuntu下配置Hadoop环境
    Debian Wheezy 安装Nginx+HHVM
    Linux Glibc库严重安全漏洞检测与修复方案
    关于系统时间的几个问题
    C语言的整型溢出问题
    Django Nginx配置
    linux上安装mysql5.7
    日期、时间选择器
  • 原文地址:https://www.cnblogs.com/hustfly/p/3403652.html
Copyright © 2011-2022 走看看