17

オブジェクトのすべてのプロパティを再帰的に再帰的に初期化するために、休止状態で1つの関数を作成しているため、オブジェクトグラフ全体がロードされます。

これを使用する必要がある2つの複雑なシナリオがあります

1) カテゴリやサブカテゴリのような自己複合オブジェクト ...

@Entity
public class Category {

    @Column(nullable = false, length = 50)
    @NotNull
    @Size(max = 50, message = "{50}")
    protected String name;

    @ManyToOne(targetEntity = Category.class, fetch = FetchType.LAZY, optional = true)
    private Category parentCategory;
    }

2) 使用前に初期化するオブジェクトが多数ある複雑なオブジェクト グラフ。

問題は、選択的なケースでのみこのオブジェクト グラフ全体が必要なため、熱心なフェッチを使用できないことです。また、コードを一般化する必要があるため、オブジェクトの HQL クエリを記述する必要はありません。

私はこれのために部分的なコードを書きました、

public void recursiveInitliaze(Object obj) throws Exception {
    if(!Hibernate.isInitialized(obj))
        Hibernate.initialize(obj);
    PropertyDescriptor[] properties = PropertyUtils.getPropertyDescriptors(obj);
    for (PropertyDescriptor propertyDescriptor : properties) {
        Object origProp = PropertyUtils.getProperty(obj, propertyDescriptor.getName());
        if (origProp != null) {
            this.recursiveInitliaze(origProp);
        }
        if (origProp instanceof Collection && origProp != null) {               
            for (Object item : (Collection) origProp) {
                this.recursiveInitliaze(item);
            }
        }
    }
}

ただし、1 つの問題があります。双方向の関係が原因で、メソッド呼び出しのスタック オーバーフローが発生します。双方向の関係があることを検出する方法、またはこれを実装するより良い方法はありますか?

フェッチ プロファイルも役立つと思いますが、プロジェクトの現在の段階でフェッチ プロファイルを構成するのは難しいため、可能であればこれを実装したいと考えています。

4

2 に答える 2

11

完全なコード:

public <T> T recursiveInitliaze(T obj) {
    Set<Object> dejaVu = Collections.newSetFromMap(new IdentityHashMap<Object, Boolean>());
    try {
        recursiveInitliaze(obj, dejaVu);
    } catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
        ReflectionUtils.handleReflectionException(e);
    }
    return obj;
}

private void recursiveInitliaze(Object obj, Set<Object> dejaVu) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException {
    if (dejaVu.contains(this)) {
        return;
    } else {
        dejaVu.add(this);

        if (!Hibernate.isInitialized(obj)) {
            Hibernate.initialize(obj);
        }
        PropertyDescriptor[] properties = PropertyUtils.getPropertyDescriptors(obj);
        for (PropertyDescriptor propertyDescriptor : properties) {
            Object origProp = PropertyUtils.getProperty(obj, propertyDescriptor.getName());
            if (origProp != null) {
                this.recursiveInitliaze(origProp, dejaVu);
            }
            if (origProp instanceof Collection && origProp != null) {
                for (Object item : (Collection<?>) origProp) {
                    this.recursiveInitliaze(item, dejaVu);
                }
            }
        }
    }
}

ReflectionUtils のコード:

/**
 * Handle the given reflection exception. Should only be called if no
 * checked exception is expected to be thrown by the target method.
 * <p>Throws the underlying RuntimeException or Error in case of an
 * InvocationTargetException with such a root cause. Throws an
 * IllegalStateException with an appropriate message else.
 * @param ex the reflection exception to handle
 */
public static void handleReflectionException(Exception ex) {
    if (ex instanceof NoSuchMethodException) {
        throw new IllegalStateException("Method not found: " + ex.getMessage());
    }
    if (ex instanceof IllegalAccessException) {
        throw new IllegalStateException("Could not access method: " + ex.getMessage());
    }
    if (ex instanceof InvocationTargetException) {
        handleInvocationTargetException((InvocationTargetException) ex);
    }
    if (ex instanceof RuntimeException) {
        throw (RuntimeException) ex;
    }
    throw new UndeclaredThrowableException(ex);
}
于 2014-09-01T14:49:08.457 に答える
8

Hibernate.initialize()オブジェクトで使用して初期化できます。これがカスケードするかどうかはわかりません。instanceof HibernateProxyそれ以外の場合は、 isInitialized プロパティを提供するものを確認できます。

更新:初期化はカスケードしないため、すでに行っているようにツリーをトラバースする必要があります。ハッシュセットを使用して、既に処理したオブジェクトを追跡します。

于 2012-07-12T08:53:34.450 に答える