当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:13:00  来源:本站整理

hibernate注解办法实现复合主键[Java编程]

赞助商链接



  本文“hibernate注解办法实现复合主键[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

有时一个实体的主键大概同时为多个,比方一样是之前利用的“CustomerEO”实体,需求通过name和email来查找指定实体,当且仅当name和email的值完好相同时,才认为是相同的实体对象.要配置这样的复合主键,步骤如以下所示.

(1)编写一个复合主键的类CustomerPK,代码以下.

CustomerPK.java

import java.io.Serializable;

public class CustomerPK implements Serializable {

          public CustomerPK() {

          }

          public CustomerPK(String name, String email ) {
                    this.name = name;
                    this.email = email ;
          }

          private String email ;

          public String getEmail () {
                    return email ;
          }

          public void setEmail (String email ) {
                    this.email = email ;
          }

          private String name;

          public String getName() {
                    return name;
          }

          public void setName(String name) {
                    this.name = name;
          }

          @Override
          public int hashCode() {
                    final int PRIME = 31;
                    int result = 1;
                    result = PRIME * result + ((email == null ) ? 0 : email .hashCode());
                    result = PRIME * result + ((name == null ) ? 0 : name.hashCode());
                    return result;
          }

          @Override
          public boolean equals(Object obj) {
                    if (this == obj)
                             return true;
                    if (obj == null )
                             return false;
                    if (getClass() != obj.getClass())
                             return false;
                    final CustomerPK other = (CustomerPK) obj;
                    if (email == null ) {
                             if (other.email != null )
                                      return false;
                    } else if (!email .equals(other.email ))
                             return false;
                    if (name == null ) {
                             if (other.name != null )
                                      return false;
                    } else if (!name.equals(other.name))
                             return false;
                    return true;
          }

}


  以上是“hibernate注解办法实现复合主键[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:

  • 在Hibernate里面动态切换SChema实现访谒差别的数据库的几种办法
  • Hibernate 3新增XML关系长期性介绍
  • Hibernate配置文件在单元测试中的操纵
  • 在Hibernate中动态切换Schema
  • hibernate annoation (八 关联映射)
  • hibernate annoation (九 cascading)
  • <b>hibernate annoation (十 映射查询)</b>
  • hibernate annoation(十一 缓存Ehcache 采纳annoation)
  • Hibernate:操作配置文件生成数据库
  • hibernate annoation (一 加载)
  • hibernate annoation (二 成立表)
  • <b>hibernate annoation (三 id生成器)</b>
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .