标签:hibernate helloworld entity
一:HelloWorld注解实现
二:程序源码
三: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_Annotation
标签:hibernate helloworld entity
原文地址:http://blog.csdn.net/u013628152/article/details/43527711