at sometime we usually need to create two tables that one table relate another.Such as a husband only

have a wife. So how can I design relationship like this.In programming, The type of this relationship

named “unidirectional one-to-one association”.

How to implement this relationship with hibernate?

example for husband and wife.

When create object husband and wife, you can relate two object like this:

The Hasband object:

   1:  @Entity
   2:  public class Husband {
   3:      private int id;
   4:      private String name;
   5:      private Wife wife;
   6:      @Id
   7:      @GeneratedValue
   8:      public int getId() {
   9:          return id;
  10:      }
  11:      public void setId(int id) {
  12:          this.id = id;
  13:      }
  14:      public String getName() {
  15:          return name;
  16:      }
  17:      public void setName(String name) {
  18:          this.name = name;
  19:      }
  20:      @OneToOne
  21:      @JoinColumn(name="wifeId")
  22:      public Wife getWife() {
  23:          return wife;
  24:      }
  25:      public void setWife(Wife wife) {
  26:          this.wife = wife;
  27:      }
  28:  }

The Wife object:

   1:  @Entity
   2:  public class Wife {
   3:      private int id;
   4:      private String name;
   5:      @Id
   6:      @GeneratedValue
   7:      public int getId() {
   8:          return id;
   9:      }
  10:      public void setId(int id) {
  11:          this.id = id;
  12:      }
  13:      public String getName() {
  14:          return name;
  15:      }
  16:      public void setName(String name) {
  17:          this.name = name;
  18:      }
  19:      
  20:  }

We use annotation configuration hibernate by default. So you saw the annotition like @Entity in code.

Wife and Husband both are used @Entity.It means that object will mapping to database.

The getId() method in Wife and Husband both are used @Id and @GeneratedValue

The getWife() method in Husband object has annotation like this:

@OneToOne
      @JoinColumn(name="wifeId")

Then, the column which is named wifeId wille be created.

So, Use annotation is so simple.  that;s all.

Do from that we can get create table SQL like this:

   1:      create table Husband (
   2:          id integer not null auto_increment,
   3:          name varchar(255),
   4:          wifeId integer,
   5:          primary key (id)
   6:      )
   7:  2014-1-11 14:46:41 org.hibernate.tool.hbm2ddl.SchemaExport perform
   8:  
   9:   
  10:      create table Wife (
  11:          id integer not null auto_increment,
  12:          name varchar(255),
  13:          primary key (id)
  14:      )
  15:   
  16:      alter table Husband 
  17:          add constraint FK_kruq9jfxa0jrc2od8dbh09mia 
  18:          foreign key (wifeId) 
  19:          references Wife (id)

Finally , Talk about xml configure. When use xml to configure hibernate more trouble than use annotations:

You need write like this in xml file:

<many-to-one name="wife" column="wifId" unique="true" ></many-to-one>

Hibernate -- A unidirectional one-to-one association on a foreign key的更多相关文章

  1. hibernate部分源码解析and解决工作上关于hibernate的一个问题例子(包含oracle中新建表为何列名全转为大写且通过hibernate取数时如何不用再次遍历将列名(key)值转为小写)

    最近在研究系统启动时将数据加载到内存非常耗时,想着是否有办法优化!经过日志打印测试发现查询时间(查询时间:将数据库数据查询到系统中并转为List<Map>或List<*.Class& ...

  2. Hibernate级联删除时:Cannot delete or update a parent row: a foreign key constraint fails异常

    在删除主表数据时,报了一个异常 Cannot delete or update a parent row: a foreign key constraint fails 原因是主表中还包含字表的数据, ...

  3. hibernate 中文文档

    转载:http://blog.csdn.net/kevon_sun/article/details/42850387 Hibernate Annotations 参考文档 3.2.0 CR1 目录 前 ...

  4. eclipse中hibernate和mybatis中xml配置文件的没有标签提醒解决方法

    当我们使用eclipse编写Mybatis或hibernate的xml文件时,面对众多标签的配置文件,却没有自动提醒,对于工作和学习都十分不方便. 之所以没有自动提醒,是因为dtd文件没有加载成功. ...

  5. hibernate学习(一)配置,导包

    框架的作用 学过javaWeb基础的已经对web层 jsp  servlet   ,service  层  ,dao层的jdbc .DBUtils 有了很深的了解 并编写代码实现某种功能 为了提高开发 ...

  6. hibernate 多对多(many-to-many)

    多对多(many-to-many):在操作和性能方面都不太理想,所以多对多的映射使用较少,实际使用中最好转换成一对多的对象模型:hibernate会为我们创建中间关联表,转换成两个一对多. 1. E- ...

  7. [Hibernate系列—] 3. 映射文件和使用SchemaExport制作自己主动Schema

    自己定义映射文件 这里的映射文件指的是相应到数据库表的xml 的定义文件. 相应的每一个数据库表栏位, 能够定义的属性有: 属性名 类型 Description length number 栏位的长度 ...

  8. Hibernate的dtd文件和properties文件

    hibernate-configuration-3.0.dtd <!-- Hibernate file-based configuration document. <!DOCTYPE hi ...

  9. Struts2+Spring+Hibernate框架整合总结详细教程

    一.SSH三大框架知识总结 Struts 2是Struts的下一代产品,是在 struts 1和WebWork的技术基础上进行了合并的全新的Struts 2框架.其全新的Struts 2的体系结构与S ...

随机推荐

  1. getWinSystemIcon

    #include <QtGui/QImage>#include <QtGui/QPixmap>void getSystemIcon(const chConstStringA&a ...

  2. java中switch、while、do...while、for

    一.Java条件语句之 switch 当需要对选项进行等值判断时,使用 switch 语句更加简洁明了.例如:根据考试的名次,给予前 4 名不同的奖品.第一名,奖励笔记本一台:第二名,奖励 IPAD  ...

  3. python 自动发邮件 Errno61 Connection refused

    此问题是在mac机器上遇到 之前在windows平台运行ok的脚本在mac上报错 后来查了半天 发现是网络接入不对 切换下网络后问题就解决了

  4. 计算软键盘的高度然后确定自定义的View的具体位置

    singleTouchView.getViewTreeObserver().addOnGlobalLayoutListener( new ViewTreeObserver.OnGlobalLayout ...

  5. go的mgo,连接未释放问题,连接泄露。

    api启动几天后,卡住(连接失败,超时) 异常原因 mongo连接被占满,无法建立mgo连接,返回信息 查询点用端口可知,97%的连接被api项目占用. api项目的mongodb连接“泄露”,某处的 ...

  6. 简单一键CENTOS6 安装PPTP VPN方法记录

    申明:我们使用PPTP VPN仅仅只能用在查阅资料等正规渠道,不要用在不良用途上.方法收集于网上,这里我用在搬瓦工VPS(VPS方案直达),采用的是CENTOS6 64位系统.我们需要预先将VPS服务 ...

  7. Getting Started With Hazelcast 读书笔记(第二章、第三章)

    第二章 起步 本章就相当简单粗暴了,用一个个例子说明hazelcast怎么用. 1.map,set,list这些集合类都是开箱即用的,只要从Hazelcast的实例中获取一份就行. 2.增加了Mult ...

  8. onethink和thinkphp3.2学习

    thinkphp发布3.2版本之后,也发布了一个简单的内容管理系统onthink,这样有助于理解thinkphp3.2的使用: 一.首先最关键的一点是thinkphp3.2中加入了命名空间的使用 什么 ...

  9. 我开发的SNMP编译器和浏览器

    我开发的SNMP编译器和浏览器 什么是SNMP SNMP(Simple Network Management Protocol,简单网络管理协议)的前身是简单网关监控协议(SGMP),用来对通信线路进 ...

  10. AndroidLinker与SO加壳技术之下篇

    点此查看上篇<AndroidLinker与SO加壳技术之上篇> 2.4 链接 链接过程由 soinfo_link_image 函数完成,主要可以分为四个主要步骤: 1. 定位 dynami ...