在使用map集合配置实体类型时候,其key为某一个字段,而value是这一个实体的实例
比如Team和Student一对多的关系,Team中有一个ma存放student,这个map的key为student中的cardid,而value是具体的一个student实例
需要注意的是,这样使用时候,team端需要维护cardid,所以,不能再像set那样可以在1端设置inverse="true"来提高性能
数据库结构:
create table teamMapC (id varchar(32),teamname varchar(32));
create table studentMapC (id varchar(32),cardid varchar(32),name varchar(32),age int,description varchar(32), team_id varchar(32));
实体类:
package Collection.Map.Complex;
public class Student ...{
private String id;
private String name;
private String description;
private int age;
private String cardid;
private Team team;
public String getId() ...{
return id;
}
public void setId(String id) ...{
this.id = id;
}
public String getName() ...{
return name;
}
public void setName(String name) ...{
this.name = name;
}
public String getDescription() ...{
return description;
}
public void setDescription(String description) ...{
this.description = description;
}
public int getAge() ...{
return age;
}
public void setAge(int age) ...{
this.age = age;
}
public String getCardid() ...{
return cardid;
}
public void setCardid(String cardid) ...{
this.cardid = cardid;
}
public Team getTeam() ...{
return team;
}
public void setTeam(Team team) ...{
this.team = team;
}
}
package Collection.Map.Complex;
import java.util.HashMap;
import java.util.Map;
public class Team ...{
private String id;
private String teamname;
private Map students=new HashMap();
public String getId() ...{
return id;
}
public void setId(String id) ...{
this.id = id;
}
public String getTeamname() ...{
return teamname;
}
public void setTeamname(String teamname) ...{
this.teamname = teamname;
}
public Map getStudents() ...{
return students;
}
public void setStudents(Map students) ...{
this.students = students;
}
}
Hibernate.cfg.xml
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<!-- Generated by MyEclipse Hibernate Tools. -->
<hibernate-configuration>
<session-factory>
<property name="connection.username">root</property>
<property name="connection.url">
jdbc:mysql://localhost:3306/schoolproject?characterEncoding=gb2312&useUnicode=true
</property>
<property name="dialect">
org.hibernate.dialect.MySQLDialect
</property>
<property name="myeclipse.connection.profile">mysql</property>
<property name="connection.password">1234</property>
<property name="connection.driver_class">
com.mysql.jdbc.Driver
</property>
<property name="hibernate.dialect">
org.hibernate.dialect.MySQLDialect
</property>
<property name="hibernate.show_sql">true</property>
<property name="current_session_context_class">thread</property>
<property name="jdbc.batch_size">15</property>
<mapping resource="Collection/Map/Complex/Student.hbm.xml" />
<mapping resource="Collection/Map/Complex/Team.hbm.xml" />
</session-factory>
</hibernate-configuration> Team.hbm.xml
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!--
Mapping file autogenerated by MyEclipse - Hibernate Tools
-->
<hibernate-mapping>
<class name="Collection.Map.Complex.Team" table="teamMapC" >
<id name="id" unsaved-value="null">
<generator class="uuid.hex"></generator>
</id>
<property name="teamname" type="string" column="teamname"></property>
<!--由于cardid需要team来维护,所以,使用map表示1对多时候,不能再1方设置inverse="true"-->
<map name="students" table="studentMap" cascade="all" >
<key column="team_id"></key>
<!-- index代表key,element(或one-to-many)代表value-->
<!-- 这里用cardid作为key,具体的student实例作为value -->
<index column="cardid" type="string"></index>
<one-to-many class="Collection.Map.Complex.Student"/>
</map>
</class>
</hibernate-mapping>
Student.hbm.xml
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!--
Mapping file autogenerated by MyEclipse - Hibernate Tools
-->
<hibernate-mapping>
<class name="Collection.Map.Complex.Student" table="studentMapC" >
<id name="id" unsaved-value="null">
<generator class="uuid.hex"></generator>
</id>
分享到:
相关推荐
- **Hibernate集合映射之Map-----element映射实体类型值.doc、Hibernate集合映射之Map-----element映射基本类型值.doc**:讨论了如何映射Java集合到数据库表,特别是使用Map类型和Element元素。 - **Hibernate with ...
这篇文章将深入探讨Hibernate中的集合映射机制,包括其基本概念、类型以及如何在实际开发中进行配置。 ### 1. Hibernate集合映射的基本概念 集合映射是Hibernate中一个核心的概念,它允许我们将数据库表中的多对一...
本文将深入探讨Hibernate中的四种主要集合映射类型:Set、List、Array和Map,以及它们在实际开发中的应用场景和配置。 一、Set集合映射 Set集合映射是最常见的映射类型,它不允许重复元素。在Hibernate中,Set通常...
Hibernate支持多种集合映射类型,包括List、Set、Map、Bag、Array等。它们之间的区别主要在于元素的唯一性、顺序性和映射到数据库的实现方式。例如,List和Array维护元素的插入顺序,而Set不允许重复元素;Map则...
集合映射是Hibernate中一个非常关键的概念,它使得Java集合类如List、Set、Map等能够与数据库中的多对一、一对多、多对多关系对应起来。在这个主题中,我们将深入探讨Hibernate集合映射的各个方面。 首先,我们来看...
在Hibernate中,Composite-element用于表示实体类中的复杂类型属性,它将这些属性作为一个整体(复合元素)来处理,映射到数据库表的一个字段或者几个字段。这样的配置可以使数据库设计更加简洁,尤其是在处理如地址...
`map-key`定义了映射键的列和类型,`element`定义了映射值的列和类型。 4. **Bag集合映射** Bag是Hibernate特有的集合类型,类似于List,但不保证元素顺序,性能上比List略优。配置方式与List类似,但使用`<bag>`...
没有显示在提供的内容中,但通常会有一个类似的映射,反向关联`Team`,将`team`属性映射到`memberAtTeams2`表,`<key>`元素指定了关联表的外键`member`,而`<composite-element>`元素则定义了`Map`中元素的类型,即`...
在Hibernate中,`<map>`标签用于映射,其中`key column`定义键的列,`map-key-column`定义值的键列,`element column`定义值的列。比如,用户可以拥有多个属性,属性名作为键,属性值作为值,这种情况适合使用Map...
本篇笔记主要探讨了如何使用Hibernate进行容器映射,特别是针对集合类型的映射,如List、Set和Map。 首先,我们来看集合类型在Hibernate中的映射: 1. **单值Collection**: 这种情况通常指的是一个对象与多个其他...
Hibernate提供了多种集合类型,如`List`、`Set`、`Map`等,对应的映射元素有`<list>`、`<set>`、`<map>`等。集合元素的关联可以通过`<key>`、`<element>`或`<composite-element>`来定义。 8. HQL与Criteria查询 ...
在探讨Hibernate中List信息的配置时,我们主要聚焦于如何在ORM(对象关系映射)框架下有效地管理和操作集合类型,尤其是List、Set以及Map。本文将深入解析List与Set在Hibernate中的映射机制,同时也会简要提及Map的...
9. **集合映射**:Hibernate支持多种集合类型的映射,如List、Set、Map等,可以映射到数据库的关联表或数组中。 10. **级联操作**:通过设置`cascade`属性,可以在操作一个实体时自动处理其关联实体,如`save-...
例如,对于List,我们可以使用`<list>`标签,对于Set使用`<set>`,对于Map使用`<map>`,并指定对应的键(key)和值(element)类型。 3. **关联关系**: - **一对一(OneToOne)**:通过`<one-to-one>`标签来实现...
以下是这个例子的Hibernate映射文件: <component name="Name" class="eg.Name"> <!-- class attribute optional --> 人员(Person)表中将包括pid, birthday, initial, first和 last等字段...
在Java的Hibernate框架中,集合类数据结构的映射是将Java的集合类型(如Set、Map、List和数组)映射到数据库的关系模型,以便于在对象关系映射(ORM)中管理和操作数据。以下是关于如何进行集合映射的详细教程: 一...
实体Map是指集合中的元素是实体对象。 **场景** 例如,一个`Project`可以包含多个`Task`,每个任务都有其特定的信息。 **HIBERNATE映射** 使用`<map>`标签来映射这种关系: ```xml <hibernate-mapping> ...
9. **集合映射**:Hibernate支持多种集合类型的映射,如List、Set、Map等,以及一对一、一对多、多对一、多对多的关系映射。 10. **Oracle数据库支持**:Hibernate可以与多种数据库配合使用,包括Oracle。使用...
在Java的Hibernate框架中,Map映射和SortedMap映射是两种常见的集合类型,用于处理对象之间的关联关系,特别是处理一对多(One-to-Many)和多对一(Many-to-One)关系。Hibernate是一个强大的对象关系映射(ORM)...