hibernate 集合映射

如果你希望数据库自己对集合元素排序,可以利用set,bag或者map映射中的order-by属性。这个解决方案只能在jdk1.4或者更高的jdk版本中才可以实现(通过LinkedHashSet或者 LinkedHashMap实现)。 它是在SQL查询中完成排序,而不是在内存中。

<set name="aliases" table="person_aliases" order-by="lower(name) asc">    
  <key column="person"/>    
  <element column="name" type="string"/> 
</set> 

 
<map name="holidays" order-by="hol_date, hol_name">     
  <key column="year_id"/>   
  <map-key column="hol_name" type="string"/>    
  <element column="hol_date" type="date"/> 
</map> 

   

引自:http://developer.51cto.com/art/200909/153972.htm

你可能感兴趣的:(jdk,sql,Hibernate)