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

[转]hibernate 集合类(Collections)照射(五)- array

2012-08-27 
[转]hibernate 集合类(Collections)映射(五)- array五、array(数组)映射?将实体类Department修改如下:?Java

[转]hibernate 集合类(Collections)映射(五)- array

五、array(数组)映射

?

将实体类Department修改如下:

?

Java代码

private?

private?

Java代码

<array name="emps">??

?????????????????????????????????????????????

<array name="emps">

?????????????????????????????????????????

Java代码

Employee[] emps=??????????????????????????????????

Employee[] emps=??????????????????????????????for(int???????????????????????????

for(int????????????????????????

id=2 name=employee2 name2

id=1 name=employee1 name1

?

数据库表中记录:

?

mysql> select * from department;

+----+-----------------+

| id | name???????????+----+-----------------+

|?+----+-----------------+

1 row in set (0.00 sec)

?

mysql> select * from employee;

+----+-----------------+-----------+-----------+

| id | name???????????+----+-----------------+-----------+-----------+

|?|?+----+-----------------+-----------+-----------+

2 rows in set (0.00 sec)

?

总结:

?

集合映射(set,list,array,bag,map)这些集合类都是Hibernate实现的类和JAVA中的集合不完全一样,set,list,map

分别和JAVA中的Set,List,Map接口对应,bag映射成JAVA的List;这些集合的使用和JAVA集合中对应的接口基本一致;在JAVA的实体类中集合只能定义成接口,不能定义成具体类,因为集合会在运行时被替换成Hibernate的实现。除了Set和Bag之外的所有集合类型都有一个索引(index)字段,这个字段映射到一个数组或者List的索引或者Map的key。Map的索引的类型可以是任何基本类型,?实体类型或者甚至是一个组合类型(但不能是一个集合类型)。数组和list的索引肯定是整型,integer。在Hibernate配置文件中使用?<index>, <index-many-to-many>, <composite-index>?或者<index-many-to-any>等元素来映射索引。集合的简单使用原则:大部分情况下用set,需要保证集合中的顺序时用list,想用java.util.List又不需要保证顺序时用bag.

热点排行