3、单向一对一
每个中国公民都有一张身份证,这就是典型的一对一关联关系。首先,讨论单向的一对一,即只考虑从公民这一端能找到它的身份证,而身份证这一端不知道公民的存在。
有两种常用的方式可以表示这种一对一关系:基于唯一外键关联方式和基于主键关联方式。
方式一:基于外键关联方式
Citizen.java
- package com.zxf.domain;
- /** 公民实体类 */
- public class Citizen {
- private Long id; //对象标识符(OID)
- private String name; //姓名
- private boolean gender; //性别
- private IDCard idCard; //身份证
- public Citizen(){} //无参数的构造方法
- //以下省略所有属性的getters和setters方法...
- }
package com.zxf.domain;
/** 公民实体类 */
public class Citizen {
private Long id; //对象标识符(OID)
private String name; //姓名
private boolean gender; //性别
private IDCard idCard; //身份证
public Citizen(){} //无参数的构造方法
//以下省略所有属性的getters和setters方法...
}
IDCard.java
- package com.zxf.domain;
- /** 身份证实体类 */
- public class IDCard {
- private Long id; //对象标识符(OID)
- private String no; //身份证编写
- public IDCard(){} //无参数的构造方法
- //以下为所有属性的getters和setters方法...
- }
package com.zxf.domain;
/** 身份证实体类 */
public class IDCard {
private Long id; //对象标识符(OID)
private String no; //身份证编写
public IDCard(){} //无参数的构造方法
//以下为所有属性的getters和setters方法...
}
Citizen.hbm.xml
- <hibernate-mapping>
- <!-- 映射持久化类 -->
- <class name="com.zxf.domain.Citizen" table="citizen">
- <!-- 映射对象标识符 -->
- <id name="id" column="id" type="long">
- <generator class="native" />
- </id>
- <!-- 映射普通属性 -->
- <property name="name"/>
- <property name="gender"/>
- <!-- 用many-to-one元素映射基于唯一外键的一对一关联
- name属性:指定关联的属性名
- column属性:指定此关联属性在数据库表中的外键字段名
- unique属性:指定值为“true”来限制多端的多重性为一
- cascade属性:用来指定两个对象之间的操作联动关系
- -->
- <many-to-one name="idCard"
- column="idcard_id"
- unique="true"
- cascade="all"/>
- </class>
- </hibernate-mapping>
<hibernate-mapping>
<!-- 映射持久化类 -->
<class name="com.zxf.domain.Citizen" table="citizen">
<!-- 映射对象标识符 -->
<id name="id" column="id" type="long">
<generator class="native" />
</id>
<!-- 映射普通属性 -->
<property name="name"/>
<property name="gender"/>
<!-- 用many-to-one元素映射基于唯一外键的一对一关联
name属性:指定关联的属性名
column属性:指定此关联属性在数据库表中的外键字段名
unique属性:指定值为“true”来限制多端的多重性为一
cascade属性:用来指定两个对象之间的操作联动关系
-->
<many-to-one name="idCard"
column="idcard_id"
unique="true"
cascade="all"/>
</class>
</hibernate-mapping>
IDCard.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">
- <hibernate-mapping>
- <!-- 映射持久化类 -->
- <class name="com.zxf.domain.IDCard"
- table="idcard">
- <!-- 映射对象标识符 -->
- <id name="id" column="id" type="long">
- <generator class="native" />
- </id>
- <!-- 映射普通属性 -->
- <property name="no" not-null="true" />
- </class>
- </hibernate-mapping>
<?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"> <hibernate-mapping> <!-- 映射持久化类 --> <class name="com.zxf.domain.IDCard" table="idcard"> <!-- 映射对象标识符 --> <id name="id" column="id" type="long"> <generator class="native" /> </id> <!-- 映射普通属性 --> <property name="no" not-null="true" /> </class> </hibernate-mapping>
配置文件: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">
- <hibernate-configuration>
- <session-factory>
- <!-- 数据库方言设置 -->
- <property name="hibernate.dialect">
- org.hibernate.dialect.MySQLInnoDBDialect
- </property>
- <!-- 数据库连接参数设置 -->
- <property name="hibernate.connection.driver_class">
- com.mysql.jdbc.Driver
- </property>
- <property
- name="hibernate.connection.url">jdbc:mysql:///hibernate</property>
- <property name="hibernate.connection.username">root</property>
- <property name="hibernate.connection.password">123</property>
- <!--实际操作数据库时是否显示SQL -->
- <!--
- <property name="hibernate.show_sql">true</property>
- <property name="hibernate.format_sql">true</property>
- -->
- <!--将数据库schema的DDL导出到数据库 -->
- <property name="hibernate.hbm2ddl.auto">update</property>
- <!-- 以下定义实体类与数据库表的映像文件 -->
- <mapping resource="com/zxf/domain/Citizen.hbm.xml" />
- <mapping resource="com/zxf/domain/IDCard.hbm.xml" />
- </session-factory>
- </hibernate-configuration>
<?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"> <hibernate-configuration> <session-factory> <!-- 数据库方言设置 --> <property name="hibernate.dialect"> org.hibernate.dialect.MySQLInnoDBDialect </property> <!-- 数据库连接参数设置 --> <property name="hibernate.connection.driver_class"> com.mysql.jdbc.Driver </property> <property name="hibernate.connection.url">jdbc:mysql:///hibernate</property> <property name="hibernate.connection.username">root</property> <property name="hibernate.connection.password">123</property> <!--实际操作数据库时是否显示SQL --> <!-- <property name="hibernate.show_sql">true</property> <property name="hibernate.format_sql">true</property> --> <!--将数据库schema的DDL导出到数据库 --> <property name="hibernate.hbm2ddl.auto">update</property> <!-- 以下定义实体类与数据库表的映像文件 --> <mapping resource="com/zxf/domain/Citizen.hbm.xml" /> <mapping resource="com/zxf/domain/IDCard.hbm.xml" /> </session-factory> </hibernate-configuration>
方式二:基于主键关联方式
citizen表和idcard表具有相同的主键。这种实现方式的映射文件如下。
Citizen.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">
- <hibernate-mapping>
- <!-- 映射持久化类 -->
- <class name="com.zxf.domain.Citizen" table="citizen">
- <!-- 映射对象标识符 -->
- <id name="id" column="id">
- <!-- foreign表示使用另外一个相关联的对象(用property属性指定
- 的那个属性)的标识符 -->
- <generator class="foreign">
- <param name="property">idCard</param>
- </generator>
- </id>
- <!-- 映射普通属性 -->
- <property name="name"/>
- <property name="gender"/>
- <!-- 用one-to-one元素映射基于主键的一对一关联
- name属性:指定关联的属性名
- constrained属性:true表示该类对应的数据库表和被关联的对象所对应
- 的数据库表之间,通过一个外键引用对主键进行约束。
- -->
- <one-to-one name="idCard" constrained="true"/>
- </class>
- </hibernate-mapping>
<?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"> <hibernate-mapping> <!-- 映射持久化类 --> <class name="com.zxf.domain.Citizen" table="citizen"> <!-- 映射对象标识符 --> <id name="id" column="id"> <!-- foreign表示使用另外一个相关联的对象(用property属性指定 的那个属性)的标识符 --> <generator class="foreign"> <param name="property">idCard</param> </generator> </id> <!-- 映射普通属性 --> <property name="name"/> <property name="gender"/> <!-- 用one-to-one元素映射基于主键的一对一关联 name属性:指定关联的属性名 constrained属性:true表示该类对应的数据库表和被关联的对象所对应 的数据库表之间,通过一个外键引用对主键进行约束。 --> <one-to-one name="idCard" constrained="true"/> </class> </hibernate-mapping>
备注:
在这个映射文件中,通过指定标识符生成器为foreign来保证与property属性指定的对象共享同一个OID。使用one-to-one 元素来映射一对一关联。通过constrained=true ,添加了把citizen表的主键链接到idcard表主键的外键约束,即数据库保证citizen表的主键引用有效的idcard表的主键。
4、双向一对一
单向的一对一关联常用的实现方式有两种:基于唯一外键和基于主键。同样,双向的一对一关联也有这两种常用的实现方式。
方式一:基于外键一对一关联方式
Citizen.java
- package com.zxf.domain;
- /** 公民实体类 */
- public class Citizen {
- private Long id; //对象标识符(OID)
- private String name; //姓名
- private boolean gender; //性别
- private IDCard idCard; //身份证
- public Citizen(){} //无参数的构造方法
- //以下为所有属性的getters和setters方法...
- }
package com.zxf.domain;
/** 公民实体类 */
public class Citizen {
private Long id; //对象标识符(OID)
private String name; //姓名
private boolean gender; //性别
private IDCard idCard; //身份证
public Citizen(){} //无参数的构造方法
//以下为所有属性的getters和setters方法...
}
IDCard.java
- package com.zxf.domain;
- /** 身份证实体类 */
- public class IDCard {
- private Long id; //对象标识符(OID)
- private String no; //身份证编写
- private Citizen citizen; //所属公民
- public IDCard(){} //无参数的构造方法
- //以下为所有属性的getters和setters方法...
- }
package com.zxf.domain;
/** 身份证实体类 */
public class IDCard {
private Long id; //对象标识符(OID)
private String no; //身份证编写
private Citizen citizen; //所属公民
public IDCard(){} //无参数的构造方法
//以下为所有属性的getters和setters方法...
}
Citizen.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">
- <hibernate-mapping>
- <!-- 映射持久化类 -->
- <class name="com.zxf.domain.Citizen" table="citizen">
- <!-- 映射对象标识符 -->
- <id name="id" column="id" type="long">
- <generator class="native" />
- </id>
- <!-- 映射普通属性 -->
- <property name="name"/>
- <property name="gender"/>
- <!-- 用many-to-one元素映射基于唯一外键的一对一关联
- name属性:指定关联的属性名
- column属性:指定此关联属性在数据库表中的外键字段名
- unique属性:指定值为“true”来限制多端的多重性为一
- cascade属性:用来指定两个对象之间的操作联动关系
- -->
- <many-to-one name="idCard"
- column="idcard_id"
- unique="true"
- cascade="all"/>
- </class>
- </hibernate-mapping>
<?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"> <hibernate-mapping> <!-- 映射持久化类 --> <class name="com.zxf.domain.Citizen" table="citizen"> <!-- 映射对象标识符 --> <id name="id" column="id" type="long"> <generator class="native" /> </id> <!-- 映射普通属性 --> <property name="name"/> <property name="gender"/> <!-- 用many-to-one元素映射基于唯一外键的一对一关联 name属性:指定关联的属性名 column属性:指定此关联属性在数据库表中的外键字段名 unique属性:指定值为“true”来限制多端的多重性为一 cascade属性:用来指定两个对象之间的操作联动关系 --> <many-to-one name="idCard" column="idcard_id" unique="true" cascade="all"/> </class> </hibernate-mapping>
IDCard.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">
- <hibernate-mapping>
- <!-- 映射持久化类 -->
- <class name="com.zxf.domain.IDCard"
- table="idcard">
- <!-- 映射对象标识符 -->
- <id name="id" column="id" type="long">
- <generator class="native" />
- </id>
- <!-- 映射普通属性 -->
- <property name="no" not-null="true" />
- <!-- one-to-one映射一对一关联
- property-ref属性:指定反向属性引用 -->
- <one-to-one name="citizen" property-ref="idCard" />
- </class>
- </hibernate-mapping>
<?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"> <hibernate-mapping> <!-- 映射持久化类 --> <class name="com.zxf.domain.IDCard" table="idcard"> <!-- 映射对象标识符 --> <id name="id" column="id" type="long"> <generator class="native" /> </id> <!-- 映射普通属性 --> <property name="no" not-null="true" /> <!-- one-to-one映射一对一关联 property-ref属性:指定反向属性引用 --> <one-to-one name="citizen" property-ref="idCard" /> </class> </hibernate-mapping>
配置文件: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">
- <hibernate-configuration>
- <session-factory>
- <!-- 数据库方言设置 -->
- <property name="hibernate.dialect">
- org.hibernate.dialect.MySQLInnoDBDialect
- </property>
- <!-- 数据库连接参数设置 -->
- <property name="hibernate.connection.driver_class">
- com.mysql.jdbc.Driver
- </property>
- <property
- name="hibernate.connection.url">jdbc:mysql:///hibernate</property>
- <property name="hibernate.connection.username">root</property>