Hibernate 에서 ID 를 가 져 오 는 일반적인 방법

포럼 에 연 결 된 주소:
http://www.iteye.com/topic/397854
코드 를 직접 올 리 는 것 이 문 제 를 설명 할 수 있다.
먼저 도구 류 SpringContextTool. java 입 니 다. getIdValue 방법 은 원래 다른 도구 류 의 방법 으로 옮 겨 놓 으 면 편리 합 니 다.JDK 1.5 의 프로 그래 밍 스타일 이지 만 주요 기법 은 JDK 1.4 에 도 적용 된다.
public class SpringContextTool implements ApplicationContextAware {

    /**Spring       */
    private static ApplicationContext applicationContext;

    /**  ApplicationContextAware       ,       
     * @param applicationContext
     */
    public void setApplicationContext(ApplicationContext applicationContext) {
        SpringContextTool.applicationContext = applicationContext;
    }

    public static SessionFactory getSessionFactory() {
        Assert.notNull(applicationContext, "applicationContext is null,   spring      ");
        return (SessionFactory) applicationContext.getBean("sessionFactory");
    }
    
    public static ClassMetadata getClassMetadata(Class<?> cls) {
        return getSessionFactory().getClassMetadata(cls);
    }

    /**    model id  ,      id    sql   ,  ManyToOne   
     * @param model     CGLib       
     * @return id
     */
    public static String getIdValue(BaseModel model) {
        if (model instanceof HibernateProxy) {
            return (String) ((HibernateProxy) model).getHibernateLazyInitializer().getIdentifier();
        }
        return (String) getClassMetadata(model.getClass()).getIdentifier(model, EntityMode.POJO);
    }

}

1. 이곳 의 applicationContext 속성 은 static 입 니 다. 이상 하 게 생각 하 시 죠? 어 쩔 수 없 죠. getIdValue 를 추구 하기 위해 서 는 static 입 니 다. Model 이나 BaseModel 에서 HashCode 나 equals 를 실현 하기 위해 서 는 static 을 호출 하 는 방법 이 좋 습 니 다. 상태 가 있 는 것 이 아 닙 니 다.
2. getIdValue 방법 에서 매개 변수 model 은 Object 형식 일 수 있 습 니 다. 그 중에서 실현 방법 을 볼 수 있 습 니 다. 프 록 시 대상 인 HibernateProxy 라면 그의 ID 를 직접 얻 을 수 있 고, 비 프 록 시 대상 이 라면 설정 정 보 를 통 해 ID 를 얻 을 수 있 습 니 다.입력 매개 변 수 는 Object 형식 으로 변경 할 수 있 으 며, 반환 형식 도 필요 에 따라 Object 로 변경 할 수 있 습 니 다.
다음은 제 가 쓴 BaseModel 의 응용 프로그램 입 니 다. (hashCode 방법의 실현 에 주의 하 십시오. 여기 서 ID 는 String 유형 이 고 다른 유형의 ID 도 참고 할 수 있 습 니 다) 참고 하 시기 바 랍 니 다.

public abstract class BaseModel<E> implements Cloneable, Serializable {
    
    
    public int hashCode() {
        String idStr = SpringContextTool.getIdValue(this);
        return idStr == null ? super.hashCode() : idStr.hashCode();
    }

    public boolean equals(Object other) {
        if (other == null) {
            return false;
        }
        if (other == this) {
            return true;
        }
        /*          ,getClass()         */
        if (getClass().getPackage() != other.getClass().getPackage()) {
            return false;
        }
        if (hashCode() == other.hashCode()) {
            return true;
        }
        return false;
    }

    /**    */
    protected final Logger log = Logger.getLogger(getClass());
    
    
    /**  toString  ,ToStringStyle   ToStringStyle.SHORT_PREFIX_STYLE
     * ,                 ,      Hibernate     ,
     *         ,         toString     ,           toString  。
     * @return String
     */
    public String toString() {
        ToStringBuilder tsb = new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE);
        for (Field field : getClass().getDeclaredFields()) {
            if (Modifier.isStatic(field.getModifiers())) {
                continue;
            }
            String name = field.getName();
            if ("log".equals(name) || "serialVersionUID".equals(name)) {
                continue;
            }
            Object obj = ModelUtils.getProperty(this, name);
            if (obj instanceof AbstractPersistentCollection) {
                continue;
            }
            if (obj instanceof Calendar) {
                obj = DateTimeUtils.calendar2StrDateTime((Calendar) obj);
            }
            tsb.append(name, obj);
        }
        return tsb.toString();
    }

    /**     clone     ,       
     * @return Object
     */
    public E clone() {
        try {
            return (E) super.clone();
        } catch (CloneNotSupportedException ex) {
            throw new IllegalArgumentException(ex.getMessage());
        }
    }
    
    /**  simple clone     ,   Hibernate    
     * @return Object
     */
    public Object cloneSimple() {
        Object obj = ModelUtils.newInstance(getClass());
        Field[] fields = getClass().getDeclaredFields();
        for (int i = 0; i < fields.length; i++) {
            if (Modifier.isStatic(fields[i].getModifiers())) {
                continue;
            }
            String name = fields[i].getName();
            if ("serialVersionUID".equals(name)) {
                continue;
            }
            Object fieldObj = ModelUtils.getProperty(this, name);
            if (fieldObj instanceof AbstractPersistentCollection ||
                fieldObj instanceof BaseModel) {
                continue;
            }
            ModelUtils.setProperty(obj, name, fieldObj);
        }
        return obj;
    }

}


좋은 웹페이지 즐겨찾기