hibernate4新特性

来源:互联网 发布:淘宝服装模特修图 编辑:程序博客网 时间:2024/05/16 09:50

1.数据库方言设置

<property name=”dialect”>org.hibernate.dialect.MySQL5Dialect</property>
在3.X版本中连接MySQL数据库只需要指明MySQLDialect即可。
在4.X版本中可以指出MySQL5Dialect

2. buildSessionFactory
4.x版本中buildSessionFactory()已经被buildSessionFactory(ServiceRegistry ServiceRegistry)取代
解决办法:

Configuration cfg = new Configuration();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.X版本中推荐使用annotation配置,所以在引进jar包时把requested里面的包全部引进来就已经包含了annotation必须包了

4.Hibernate4.X跟Hibernate3.x以上版本一样, 可以自动创建表;
0 0
原创粉丝点击