锁定老帖子 主题:hibernate标识符问题
该帖已经被评为隐藏帖
|
|
---|---|
作者 | 正文 |
发表时间:2008-07-28
最后修改:2009-06-15
转http://lz726.iteye.com/blog/116616 有关lazy的异常分析 对象表识符: Hibernate 的 pojo 对象
import org.apache.commons.lang.builder.EqualsBuilder; import org.apache.commons.lang.builder.HashCodeBuilder; import org.apache.commons.lang.builder.ToStringBuilder; public class Department extends BaseObject implements java.io.Serializable {
private Integer id ;
private String depNo ;
private String depName ; /** default constructor */ public Department() { }
//getter/setter
public int hashCode() { return new HashCodeBuilder().append(getId()).toHashCode(); }
public String toString() { return new ToStringBuilder( this ).append( "id" , getId()).toString(); }
public boolean equals(Object other) {
if ( ( this == other)) return true ; if (! (other instanceof Department)) return false ; Department otherDep = (Department) other; return new EqualsBuilder().append( this .getId(), otherDep.getId()).isEquals();
} public abstract class BaseObject implements Serializable { 用业务键值比较对象是否相等 使用 org.apache.commons.lang.包中的方法重写equals和hashcode方法 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2008-07-28
不知所云。
|
|
返回顶楼 | |
浏览 1201 次