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

Hibernate会合映射Set和Map

2012-09-18 
Hibernate集合映射Set和MapSet和Map基本和List一样先看Set?? 只需要将List改为private Set emails new H

Hibernate集合映射Set和Map
Set和Map基本和List一样先看Set?? 只需要将List改为private Set emails = new HashSet(0);然后修改User.hbm.xml文件就可以了

<set name="emails" table="emails"><key column="userid" foreign-key="id" /><element type="string" column="email" /></set>

?

?

?

再看Map? 同样的? private Map emails = new HashMap();
<map name="emails" table="email"><key column="userid" foreign-key="id" /><map-key column="sb" type="string" /><element column="email" type="string" /></map>

?

热点排行