Hibernate映射无主键表的问题

在ms sql server 数据库中,有一个表Authors(注:此表没有主键列),用MyEclipse的hibernate生成的映射中出现四个文件,AbstractAuthors.java,Authors.java,AuthorsId.java,Authors.hbm.xml


表中有一个列是AuthName,但这列不是主键,因为AuthName可以重复,没有自增列.

现在的问题是我应该怎么做才能把数据库的数据取出来?


回复:Struts+Hibernate映射无主键表的问题

只要你不根据主键id取单条记录
其他都是一样的
取出符合条件的list即可

回复:Struts+Hibernate映射无主键表的问题

但取出 list 之后也要类型转换啊!因为他生成了两个java文件,我不知道怎么处理了!

请指教~~~~

回复:Struts+Hibernate映射无主键表的问题

AbstractAuthors.java 
AuthorsId.java
不管它,你取出list集合用Authors.java转换
如果model里有AuthorsId的话就把它去掉.xml文件里也一样,保留里边的属性就可以了.

不过很奇怪,为什么你要这么做,没有主键的表,至少也要是个复合主键啊

回复:Struts+Hibernate映射无主键表的问题

这是映射文件

xml 代码
  1. xml version="1.0"?>  
  2. "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">  
  3.   
  4. <hibernate-mapping>  
  5.     <class name="com.lichen.infocenter.hibernate.mapping.Wzcxtemp" table="WZCXTEMP" schema="EDDIE">  
  6.         <composite-id name="id" class="com.lichen.infocenter.hibernate.mapping.WzcxtempId">  
  7.             <key-property name="ch" type="java.lang.String">  
  8.                 <column name="CH" length="20" />  
  9.             key-property>  
  10.             <key-property name="cx" type="java.lang.String">  
  11.                 <column name="CX" length="16" />  
  12.             key-property>  
  13.             <key-property name="cz" type="java.lang.String">  
  14.                 <column name="CZ" length="80" />  
  15.             key-property>  
  16.             <key-property name="wzdate" type="java.lang.String">  
  17.                 <column name="WZDATE" length="20" />  
  18.             key-property>  
  19.             <key-property name="wzdd" type="java.lang.String">  
  20.                 <column name="WZDD" length="80" />  
  21.             key-property>  
  22.             <key-property name="wzxw" type="java.lang.String">  
  23.                 <column name="WZXW" length="80" />  
  24.             key-property>  
  25.             <key-property name="wzsxh" type="java.lang.String">  
  26.                 <column name="WZSXH" length="20" />  
  27.             key-property>  
  28.             <key-property name="cldw" type="java.lang.String">  
  29.                 <column name="CLDW" length="80" />  
  30.             key-property>  
  31.             <key-property name="pzdm" type="java.lang.String">  
  32.                 <column name="PZDM" length="40" />  
  33.             key-property>  
  34.             <key-property name="wzcldz" type="java.lang.String">  
  35.                 <column name="WZCLDZ" length="80" />  
  36.             key-property>  
  37.             <key-property name="lxdh" type="java.lang.String">  
  38.                 <column name="LXDH" length="20" />  
  39.             key-property>  
  40.             <key-property name="flag" type="java.lang.String">  
  41.                 <column name="FLAG" length="2" />  
  42.             key-property>  
  43.         composite-id>  
  44.     class>  
  45. hibernate-mapping>  



回复:Struts+Hibernate映射无主键表的问题

这是 Wzcxtemp 类::

package com.lichen.infocenter.hibernate.mapping;
// Generated by MyEclipse - Hibernate Tools



/**
 * Wzcxtemp generated by MyEclipse - Hibernate Tools
 */
public class Wzcxtemp extends AbstractWzcxtemp implements java.io.Serializable {

    // Constructors

    /** default constructor */
    public Wzcxtemp() {
    }

    
    /** full constructor */
    public Wzcxtemp(WzcxtempId id) {
        super(id);        
    }
   
}

这是 WzcxtempId 类::
package com.lichen.infocenter.hibernate.mapping;

/**
 * WzcxtempId generated by MyEclipse - Hibernate Tools
 */

public class WzcxtempId  implements java.io.Serializable {


    // Fields    

     private String ch;
     private String cx;
     private String cz;
     private String wzdate;
     private String wzdd;
     private String wzxw;
     private String wzsxh;
     private String cldw;
     private String pzdm;
     private String wzcldz;
     private String lxdh;
     private String flag;


    // Constructors

    /** default constructor */
    public WzcxtempId() {
    }

    

   
    // Property accessors

    public String getCh() {
        return this.ch;
    }
    
    public void setCh(String ch) {
        this.ch = ch;
    }

    public String getCx() {
        return this.cx;
    }
    
    public void setCx(String cx) {
        this.cx = cx;
    }

    public String getCz() {
        return this.cz;
    }
    
    public void setCz(String cz) {
        this.cz = cz;
    }

    public String getWzdate() {
        return this.wzdate;
    }
    
    public void setWzdate(String wzdate) {
        this.wzdate = wzdate;
    }

    public String getWzdd() {
        return this.wzdd;
    }
    
    public void setWzdd(String wzdd) {
        this.wzdd = wzdd;
    }

    public String getWzxw() {
        return this.wzxw;
    }
    
    public void setWzxw(String wzxw) {
        this.wzxw = wzxw;
    }

    public String getWzsxh() {
        return this.wzsxh;
    }
    
    public void setWzsxh(String wzsxh) {
        this.wzsxh = wzsxh;
    }

    public String getCldw() {
        return this.cldw;
    }
    
    public void setCldw(String cldw) {
        this.cldw = cldw;
    }

    public String getPzdm() {
        return this.pzdm;
    }
    
    public void setPzdm(String pzdm) {
        this.pzdm = pzdm;
    }

    public String getWzcldz() {
        return this.wzcldz;
    }
    
    public void setWzcldz(String wzcldz) {
        this.wzcldz = wzcldz;
    }

    public String getLxdh() {
        return this.lxdh;
    }
    
    public void setLxdh(String lxdh) {
        this.lxdh = lxdh;
    }

    public String getFlag() {
        return this.flag;
    }
    
    public void setFlag(String flag) {
        this.flag = flag;
    }
   



   public boolean equals(Object other) {
         if ( (this == other ) ) return true;
 if ( (other == null ) ) return false;
 if ( !(other instanceof WzcxtempId) ) return false;
 WzcxtempId castOther = ( WzcxtempId ) other; 
         
 return ( (this.getCh()==castOther.getCh()) || ( this.getCh()!=null && castOther.getCh()!=null && this.getCh().equals(castOther.getCh()) ) )
 && ( (this.getCx()==castOther.getCx()) || ( this.getCx()!=null && castOther.getCx()!=null && this.getCx().equals(castOther.getCx()) ) )
 && ( (this.getCz()==castOther.getCz()) || ( this.getCz()!=null && castOther.getCz()!=null && this.getCz().equals(castOther.getCz()) ) )
 && ( (this.getWzdate()==castOther.getWzdate()) || ( this.getWzdate()!=null && castOther.getWzdate()!=null && this.getWzdate().equals(castOther.getWzdate()) ) )
 && ( (this.getWzdd()==castOther.getWzdd()) || ( this.getWzdd()!=null && castOther.getWzdd()!=null && this.getWzdd().equals(castOther.getWzdd()) ) )
 && ( (this.getWzxw()==castOther.getWzxw()) || ( this.getWzxw()!=null && castOther.getWzxw()!=null && this.getWzxw().equals(castOther.getWzxw()) ) )
 && ( (this.getWzsxh()==castOther.getWzsxh()) || ( this.getWzsxh()!=null && castOther.getWzsxh()!=null && this.getWzsxh().equals(castOther.getWzsxh()) ) )
 && ( (this.getCldw()==castOther.getCldw()) || ( this.getCldw()!=null && castOther.getCldw()!=null && this.getCldw().equals(castOther.getCldw()) ) )
 && ( (this.getPzdm()==castOther.getPzdm()) || ( this.getPzdm()!=null && castOther.getPzdm()!=null && this.getPzdm().equals(castOther.getPzdm()) ) )
 && ( (this.getWzcldz()==castOther.getWzcldz()) || ( this.getWzcldz()!=null && castOther.getWzcldz()!=null && this.getWzcldz().equals(castOther.getWzcldz()) ) )
 && ( (this.getLxdh()==castOther.getLxdh()) || ( this.getLxdh()!=null && castOther.getLxdh()!=null && this.getLxdh().equals(castOther.getLxdh()) ) )
 && ( (this.getFlag()==castOther.getFlag()) || ( this.getFlag()!=null && castOther.getFlag()!=null && this.getFlag().equals(castOther.getFlag()) ) );
   }
   
   public int hashCode() {
         int result = 17;
         
         result = 37 * result + ( getCh() == null ? 0 : this.getCh().hashCode() );
         result = 37 * result + ( getCx() == null ? 0 : this.getCx().hashCode() );
         result = 37 * result + ( getCz() == null ? 0 : this.getCz().hashCode() );
         result = 37 * result + ( getWzdate() == null ? 0 : this.getWzdate().hashCode() );
         result = 37 * result + ( getWzdd() == null ? 0 : this.getWzdd().hashCode() );
         result = 37 * result + ( getWzxw() == null ? 0 : this.getWzxw().hashCode() );
         result = 37 * result + ( getWzsxh() == null ? 0 : this.getWzsxh().hashCode() );
         result = 37 * result + ( getCldw() == null ? 0 : this.getCldw().hashCode() );
         result = 37 * result + ( getPzdm() == null ? 0 : this.getPzdm().hashCode() );
         result = 37 * result + ( getWzcldz() == null ? 0 : this.getWzcldz().hashCode() );
         result = 37 * result + ( getLxdh() == null ? 0 : this.getLxdh().hashCode() );
         result = 37 * result + ( getFlag() == null ? 0 : this.getFlag().hashCode() );
         return result;
   }   
}

回复:Struts+Hibernate映射无主键表的问题

头有点晕

回复:Struts+Hibernate映射无主键表的问题

呵呵...可以使用 Query query=session.createQuery("from Wzcxtemp a");查询总记录数,

但不知道应该如何把数据显示出来!

回复:Struts+Hibernate映射无主键表的问题

解决了...
Session session=SessionFactory.currentSession();
Query query=session.createQuery("from Wzcxtemp a");
query.setMaxResults(10);

WzcxtempId wzid=new WzcxtempId();
Wzcxtemp wz=(Wzcxtemp)session.load(Wzcxtemp.class,wzid);

List list=query.list();
int size=list.size();

for(int i=0;i wz=(Wzcxtemp)list.get(i);
System.out.println(wz.getId().getCh());
}

就可以了


回复:Struts+Hibernate映射无主键表的问题

郁闷,如果是这样的话,那如果要进行条件查询呢?
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值