关于hibernate的AnnotationConfiguration的问题

Posted 轻舞飞扬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于hibernate的AnnotationConfiguration的问题相关的知识,希望对你有一定的参考价值。

在hibernate4之后就移除了AnnotationConfiguration()方法了,Configuration已经包含了注解的方法

Configuration con = new Configuration();
SessionFactory sf = con.configure().buildSessionFactory();
Session s = sf.openSession();    

配置文件

<mapping class="com.jckj.hibernate.model.Teacher"/>

  

以上是关于关于hibernate的AnnotationConfiguration的问题的主要内容,如果未能解决你的问题,请参考以下文章

关于hibernate的saveOrUpdate方法的一个问题

关于使用hibernate注解总结

Hibernate **关于hibernate4.3版本之后org.hibernate.service.ServiceRegistryBuilder被弃用**

在hibernate5中,关于让hibernate自动创建表报错的问题。

关于hibernate的hibernate_sequence.nextval

关于hibernate的哪些事儿