hibenate 지구 화 대상 의 hashcode 와 equals

2470 단어
hibenate 지구 화 대상 은 항상 hashcode 와 equals 방법 을 다시 써 야 합 니 다. 어떤 경우 에 다시 써 야 합 니까?
1. 대상 을 set 집합 에 넣 어야 합 니 다.
2. 대상 이 다른 인 스 턴 스 가 같은 지 비교 해 야 할 때
다시 쓰 는 방법:
1. eclipse 자동 생 성
2. 필요 에 따라 직접 쓴다
 
만약 에 쓰 지 않 는 다 면 hibenate 는 대상 이 메모리 에 있 는 주소 에 따라 두 개의 인 스 턴 스 가 같 는 지 판단 할 것 입 니 다. 업무 수요 에 따라 쓰 는 것 이 좋 습 니 다. 다음 과 같 습 니 다. 하나의 정보 류 는 저 는 두 개의 업무 키, 제목 과 발표 시간 을 설 정 했 습 니 다. 같은 시간 에 두 개의 제목 을 보 낼 확률 이 매우 낮 기 때 문 입 니 다.
/**
 * 
 * @Override
 */
public int hashCode() {
    final int prime = 31;
    int result = 1;
    result = prime * result
            + ((publishingtime == null) ? 0 : publishingtime.hashCode());
    result = prime * result + ((title == null) ? 0 : title.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;
    Information other = (Information) obj;
    if (publishingtime == null) {
        if (other.publishingtime != null)
            return false;
    } else if (!publishingtime.equals(other.publishingtime))
        return false;
    if (title == null) {
        if (other.title != null)
            return false;
    } else if (!title.equals(other.title))
        return false;
    return true;
}

 
 

좋은 웹페이지 즐겨찾기