首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

hibernate基于诠注的常规用法

2012-09-06 
hibernate基于注解的常规用法这篇文章主要是配合http://finallygo.iteye.com/blog/1040373的文章写的?1.单

hibernate基于注解的常规用法

这篇文章主要是配合

http://finallygo.iteye.com/blog/1040373的文章写的

?

1.单表的情况,比如新闻

//注意,这里的Entity是javax.persistence.Entity,不是hibernate中的

?

@Entitypublic class NewsType{        @Id        @GeneratedValue        private Integer id;//新闻类型id        private String typeName;//新闻类型名        @OneToMany(mappedBy="newsType")//这里的值对应News类中的相应属性        private Set<News> newsSet;//该新闻类型的新闻集合}
?

4.多对多的情况,将多对多转换为两个一对多,中间表建立对应实体,具体结合一对多和多对一的配置

后来发现已经有人写了类似的文章了,请参考

英文:http://docs.jboss.org/hibernate/annotations/3.5/reference/en/html/entity.html#entity-mapping-entity

中文:http://chicuping.blog.163.com/blog/static/433097832009111991826632/

热点排行