hibernate学习:HelloWorld_Annotation

一:HelloWorld注解实现

hibernate学习:HelloWorld_Annotation_第1张图片


二:程序源码


三:Console输出

Hibernate: insert into Teacher (name, title, id) values (?, ?, ?)

四:知识总结

  与 HibernateHelloWorld_xml不用的是:
(1)model中使用了@Entity @Table @id @Column等注解,映射跟表的关系

(2)Hibernate配置文件中映射实体,用class属性
   <mapping class="com.hibernate.model.Teacher" />

  (3)单元测试中,解析配置文件的时候,用的是 AnnotationConfiguration
Configuration cfg = new AnnotationConfiguration();

你可能感兴趣的:(Hibernate,helloworld,entity)