107

是)我有的:

@Entity
public class MyEntity {
  @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, orphanRemoval = true)
  @JoinColumn(name = "myentiy_id")
  private List<Address> addreses;

  @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, orphanRemoval = true)
  @JoinColumn(name = "myentiy_id")
  private List<Person> persons;

  //....
}

public void handle() {

   Session session = createNewSession();
   MyEntity entity = (MyEntity) session.get(MyEntity.class, entityId);
   proceed(session); // FLUSH, COMMIT, CLOSE session!

   Utils.objectToJson(entity); //TROUBLES, because it can't convert to json lazy collections
}

有什么问题:

问题是会话关闭后我无法提取延迟收集。但我也不能在继续方法中关闭会话。

多么好的解决方案(粗略的解决方案):

a) 在会话关闭之前,强制休眠拉取惰性集合

entity.getAddresses().size();
entity.getPersons().size();

……

b)也许更优雅的方法是使用@Fetch(FetchMode.SUBSELECT)注释

问题:

什么是最佳实践/常见方式/更优雅的方式来做到这一点?意味着将我的对象转换为 JSON。

4

11 回答 11

116

使用Hibernate.initialize()inside@Transactional来初始化惰性对象。

 start Transaction 
      Hibernate.initialize(entity.getAddresses());
      Hibernate.initialize(entity.getPersons());
 end Transaction 

现在在 Transaction 之外,您可以获得惰性对象。

entity.getAddresses().size();
entity.getPersons().size();
于 2013-11-12T12:07:13.437 回答
8

您可以在同一事务中遍历 Hibernate 对象的 Getter,以确保使用以下通用帮助程序类急切地获取所有惰性子对象:

HibernateUtil.initializeObject(myObject, "my.app.model");

package my.app.util;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.HashSet;
import java.util.Set;

import org.aspectj.org.eclipse.jdt.core.dom.Modifier;
import org.hibernate.Hibernate;

public class HibernateUtil {

public static byte[] hibernateCollectionPackage = "org.hibernate.collection".getBytes();

public static void initializeObject( Object o, String insidePackageName ) {
    Set<Object> seenObjects = new HashSet<Object>();
    initializeObject( o, seenObjects, insidePackageName.getBytes() );
    seenObjects = null;
}

private static void initializeObject( Object o, Set<Object> seenObjects, byte[] insidePackageName ) {

    seenObjects.add( o );

    Method[] methods = o.getClass().getMethods();
    for ( Method method : methods ) {

        String methodName = method.getName();

        // check Getters exclusively
        if ( methodName.length() < 3 || !"get".equals( methodName.substring( 0, 3 ) ) )
            continue;

        // Getters without parameters
        if ( method.getParameterTypes().length > 0 )
            continue;

        int modifiers = method.getModifiers();

        // Getters that are public
        if ( !Modifier.isPublic( modifiers ) )
            continue;

        // but not static
        if ( Modifier.isStatic( modifiers ) )
            continue;

        try {

            // Check result of the Getter
            Object r = method.invoke( o );

            if ( r == null )
                continue;

            // prevent cycles
            if ( seenObjects.contains( r ) )
                continue;

            // ignore simple types, arrays und anonymous classes
            if ( !isIgnoredType( r.getClass() ) && !r.getClass().isPrimitive() && !r.getClass().isArray() && !r.getClass().isAnonymousClass() ) {

                // ignore classes out of the given package and out of the hibernate collection
                // package
                if ( !isClassInPackage( r.getClass(), insidePackageName ) && !isClassInPackage( r.getClass(), hibernateCollectionPackage ) ) {
                    continue;
                }

                // initialize child object
                Hibernate.initialize( r );

                // traverse over the child object
                initializeObject( r, seenObjects, insidePackageName );
            }

        } catch ( InvocationTargetException e ) {
            e.printStackTrace();
            return;
        } catch ( IllegalArgumentException e ) {
            e.printStackTrace();
            return;
        } catch ( IllegalAccessException e ) {
            e.printStackTrace();
            return;
        }
    }

}

private static final Set<Class<?>> IGNORED_TYPES = getIgnoredTypes();

private static boolean isIgnoredType( Class<?> clazz ) {
    return IGNORED_TYPES.contains( clazz );
}

private static Set<Class<?>> getIgnoredTypes() {
    Set<Class<?>> ret = new HashSet<Class<?>>();
    ret.add( Boolean.class );
    ret.add( Character.class );
    ret.add( Byte.class );
    ret.add( Short.class );
    ret.add( Integer.class );
    ret.add( Long.class );
    ret.add( Float.class );
    ret.add( Double.class );
    ret.add( Void.class );
    ret.add( String.class );
    ret.add( Class.class );
    ret.add( Package.class );
    return ret;
}

private static Boolean isClassInPackage( Class<?> clazz, byte[] insidePackageName ) {

    Package p = clazz.getPackage();
    if ( p == null )
        return null;

    byte[] packageName = p.getName().getBytes();

    int lenP = packageName.length;
    int lenI = insidePackageName.length;

    if ( lenP < lenI )
        return false;

    for ( int i = 0; i < lenI; i++ ) {
        if ( packageName[i] != insidePackageName[i] )
            return false;
    }

    return true;
}
}
于 2014-07-21T17:00:36.853 回答
7

不是最好的解决方案,但这是我得到的:

1)用这个注解来注解你想初始化的getter:

@Retention(RetentionPolicy.RUNTIME)
public @interface Lazy {

}

2)在从数据库中读取对象后,在对象上使用此方法(可以放在泛型类中,也可以使用 Object 类更改 T):

    public <T> void forceLoadLazyCollections(T entity) {

    Session session = getSession().openSession();
    Transaction tx = null;
    try {

        tx = session.beginTransaction();
        session.refresh(entity);
        if (entity == null) {
            throw new RuntimeException("Entity is null!");
        }
        for (Method m : entityClass.getMethods()) {

            Lazy annotation = m.getAnnotation(Lazy.class);
            if (annotation != null) {
                m.setAccessible(true);
                logger.debug(" method.invoke(obj, arg1, arg2,...); {} field", m.getName());
                try {
                    Hibernate.initialize(m.invoke(entity));
                }
                catch (Exception e) {
                    logger.warn("initialization exception", e);
                }
            }
        }

    }
    finally {
        session.close();
    }
}
于 2016-06-10T01:35:57.517 回答
6

放置 Utils.objectToJson(entity); 在会话关闭之前调用。

或者您可以尝试设置获取模式并使用这样的代码

Session s = ...
DetachedCriteria dc = DetachedCriteria.forClass(MyEntity.class).add(Expression.idEq(id));
dc.setFetchMode("innerTable", FetchMode.EAGER);
Criteria c = dc.getExecutableCriteria(s);
MyEntity a = (MyEntity)c.uniqueResult();
于 2013-11-12T12:08:02.890 回答
4

Hibernate 4.1.6 引入了一个新特性来处理那些惰性关联问题。当您在 hibernate.properties 或 hibernate.cfg.xml 中启用 hibernate.enable_lazy_load_no_trans 属性时,您将不再有 LazyInitializationException。

更多参考:https ://stackoverflow.com/a/11913404/286588

于 2015-03-17T03:28:04.553 回答
4

当必须获取多个集合时,您需要:

  1. 加入获取一个集合
  2. Hibernate.initialize用于剩余的集合。

因此,在您的情况下,您需要像这样的第一个 JPQL 查询:

MyEntity entity = session.createQuery("select e from MyEntity e join fetch e.addreses where e.id 
= :id", MyEntity.class)
.setParameter("id", entityId)
.getSingleResult();

Hibernate.initialize(entity.persons);

这样,您可以通过 2 个 SQL 查询来实现您的目标并避免笛卡尔积。

于 2018-12-08T17:46:20.510 回答
3

它可能没有任何地方接近最佳实践,但我通常会SIZE在集合上调用 a 以在同一事务中加载子项,就像您建议的那样。它是干净的,不受子元素结构的任何更改的影响,并且产生的 SQL 开销很低。

于 2013-11-12T12:06:37.623 回答
0

如果您使用 jpa 存储库,请设置 properties.put("hibernate.enable_lazy_load_no_trans",true); 到 jpaPropertymap

于 2018-12-18T08:59:56.730 回答
0

您可以使用@NamedEntityGraph实体的注释来创建一个可加载的查询,以设置您要在查询中加载哪些集合。

这种方法的主要优点是,只有当您选择使用此图时,hibernate 才会进行一次查询来检索实体及其集合,如下所示:

实体配置

@Entity
@NamedEntityGraph(name = "graph.myEntity.addressesAndPersons", 
attributeNodes = {
    @NamedAttributeNode(value = "addresses"),
    @NamedAttributeNode(value = "persons")
})

用法

public MyEntity findNamedGraph(Object id, String namedGraph) {
        EntityGraph<MyEntity> graph = em.getEntityGraph(namedGraph);

        Map<String, Object> properties = new HashMap<>();
        properties.put("javax.persistence.loadgraph", graph);

        return em.find(MyEntity.class, id, properties);
}
于 2019-10-16T19:03:41.253 回答
0

关于 JPA-Hibernate 中的惰性集合存在某种误解。首先让我们明确一点, 为什么尝试读取惰性集合会引发异常,而不仅仅是简单地返回 NULL 以进行转换或进一步的用例?.

这是因为数据库中的空字段,尤其是连接列中的空字段具有意义,而不仅仅是像编程语言那样没有呈现的状态。当您尝试将惰性集合解释为 Null 值时,这意味着(在 Datastore 端)这些实体之间没有关系,这不是真的。所以抛出异常是某种最佳实践,你必须处理它而不是 Hibernate。

因此,如上所述,我建议:

  1. 在修改它或使用无状态会话进行查询之前分离所需的对象
  2. 将惰性字段操作为所需的值(零、空等)

也如其他答案中所述,有很多方法(渴望获取,加入等)或库和方法可以做到这一点,但是在处理问题和解决问题之前,您必须建立对正在发生的事情的看法。

于 2020-05-14T07:23:19.447 回答
-1

尝试使用Gson库将对象转换为 Json

servlet 示例:

  List<Party> parties = bean.getPartiesByIncidentId(incidentId);
        String json = "";
        try {
            json = new Gson().toJson(parties);
        } catch (Exception ex) {
            ex.printStackTrace();
        }
        response.setContentType("application/json");
        response.setCharacterEncoding("UTF-8");
        response.getWriter().write(json);
于 2017-11-13T08:53:17.240 回答