【问题标题】:Evict dependant collections together with parent entity与父实体一起驱逐依赖集合
【发布时间】:2012-03-24 03:16:10
【问题描述】:

我刚刚意识到,当一个对象从 Hibernate 缓存中被逐出时,dependant collections, if cached, have to be evicted separately.

对我来说,这是一个很大的 WTF:

  • 很容易忘记驱逐一个集合(例如,当一个新集合被添加到对象映射时);
  • 用于驱逐依赖集合的代码既丑陋又笨重,例如

    MyClass myObject = ...;
    getHibernateTemplate().evict(myObject);
    Cache cache = getHibernateTemplate().getSessionFactory().getCache();
    cache.evictCollection("my.package.MyClass.myCollection1, id);
    ...
    cache.evictCollection("my.package.MyClass.myCollectionN, id);

很明显,如果父对象发生了变化,那么保留它的集合就没有什么意义了,因为它们很可能是从那个父对象派生的。

我在这里遗漏了什么吗?如果不手动编写所有这些代码,真的没有办法将一个对象及其所有子实体一起刷新吗?

【问题讨论】:

  • “从属集合”是指它们配置有像“all-delete-orphan”这样的级联?
  • @Nathan Hughes - 是的。要添加到我的参数列表中 - 当驱逐集合时,无论如何都必须传递父 ID。

标签: java hibernate orm


【解决方案1】:

这只是一个缓存。缓存应该减少数据库访问。当您驱逐一个对象时,通常您没有对子对象进行任何修改,它们下次可以从缓存中加载。此外,经常发生子对象仍被其他父对象使用(在这种情况下,名称“子”不正确,因为它是 n:1 或 m:n 关系)。驱逐子对象可能会在子对象仍在使用的其他地方引发非常奇怪的错误。

因此,驱逐孩子是否好取决于您的应用程序和数据库设计。因此hibernate默认不会驱逐子对象。

如果您想自动驱逐子对象,请在映射文件中使用 cascade="evict"。

驱逐所有对象的一种更激进的方法是关闭会话并打开一个新会话。然后会话的所有对象都被驱逐。

【讨论】:

  • 我不同意你的观点。从缓存中驱逐孩子不会有任何效果。如果不存在对子对象的引用,这不是问题——它可以在必要时按需加载。或者,如果另一个类保留对缓存集合的引用,那么这又不是问题,因为硬引用仍然存在。但是感谢关于 cascade="evict" 的提示,我会看看这个。
【解决方案2】:

这是一个旧的issue。在插入、更新或删除集合引用实体时,有一种方法可以连接到休眠以驱逐集合缓存。我有supplied a fix for hibernate。该修复计划用于 Hibernate 4.3.0.Beta5,并将由属性激活:

hibernate.cache.auto_evict_collection_cache=true

只要这个修复没有被释放,你就可以通过你自己的 SessionFactory 和 SessionFactoryServiceRegistry 注册 CollectionCacheInvalidator 来注入驱逐逻辑。

import javax.persistence.OneToMany;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;

import my.own.library.BeanInformationFromClass;
import my.own.library.PropertyInformationFromClass;
import org.apache.commons.lang.StringUtils;
import org.apache.log4j.Logger;

import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.event.service.spi.EventListenerRegistry;
import org.hibernate.event.spi.EventSource;
import org.hibernate.event.spi.EventType;
import org.hibernate.event.spi.PostInsertEvent;
import org.hibernate.event.spi.PostInsertEventListener;
import org.hibernate.event.spi.PreDeleteEvent;
import org.hibernate.event.spi.PreDeleteEventListener;
import org.hibernate.event.spi.PreUpdateEvent;
import org.hibernate.event.spi.PreUpdateEventListener;
import org.hibernate.persister.collection.CollectionPersister;
import org.hibernate.persister.entity.EntityPersister;
import org.hibernate.persister.entity.Joinable;
import org.hibernate.service.spi.SessionFactoryServiceRegistry;

/**
 * @author Andreas Berger (latest modification by $Author$)
 * @version $Id$
 * @created 27.08.13 - 17:49
 */
public class CollectionCacheInvalidator
        implements PostInsertEventListener, PreDeleteEventListener, PreUpdateEventListener {

    private static final Logger LOGGER = Logger.getLogger( CollectionCacheInvalidator.class );

    private Map<String, String> mappedByFieldMapping;

    public void integrate(SessionFactoryImplementor sf, SessionFactoryServiceRegistry registry) {
        EventListenerRegistry eventListenerRegistry = registry.getService( EventListenerRegistry.class );
        eventListenerRegistry.appendListeners( EventType.POST_INSERT, this );
        eventListenerRegistry.appendListeners( EventType.PRE_DELETE, this );
        eventListenerRegistry.appendListeners( EventType.PRE_UPDATE, this );

        mappedByFieldMapping = new HashMap<String, String>();

        Map<String, CollectionPersister> persiters = sf.getCollectionPersisters();
        if ( persiters != null ) {
            for ( CollectionPersister collectionPersister : persiters.values() ) {
                if ( !collectionPersister.hasCache() ) {
                    continue;
                }
                if ( !(collectionPersister instanceof Joinable) ) {
                    continue;
                }
                String oneToManyFieldName = collectionPersister.getNodeName();
                EntityPersister ownerEntityPersister = collectionPersister.getOwnerEntityPersister();
                Class ownerClass = ownerEntityPersister.getMappedClass();

                // Logic to get the mappedBy attribute of the OneToMany annotation.
                BeanInformationFromClass bi = new BeanInformationFromClass( ownerClass );
                PropertyInformationFromClass prop = bi.getProperty( oneToManyFieldName );
                OneToMany oneToMany = prop.getAnnotation( OneToMany.class );
                String mappedBy = null;
                if ( oneToMany != null && StringUtils.isNotBlank( oneToMany.mappedBy() ) ) {
                    mappedBy = oneToMany.mappedBy();
                }
                mappedByFieldMapping.put( ((Joinable) collectionPersister).getName(), mappedBy );
            }
        }
    }

    @Override
    public void onPostInsert(PostInsertEvent event) {
        evictCache( event.getEntity(), event.getPersister(), event.getSession(), null );
    }

    @Override
    public boolean onPreDelete(PreDeleteEvent event) {
        evictCache( event.getEntity(), event.getPersister(), event.getSession(), null );
        return false;
    }

    @Override
    public boolean onPreUpdate(PreUpdateEvent event) {
        evictCache( event.getEntity(), event.getPersister(), event.getSession(), event.getOldState() );
        return false;
    }

    private void evictCache(Object entity, EntityPersister persister, EventSource session, Object[] oldState) {
        try {
            SessionFactoryImplementor factory = persister.getFactory();

            Set<String> collectionRoles = factory.getCollectionRolesByEntityParticipant( persister.getEntityName() );
            if ( collectionRoles == null || collectionRoles.isEmpty() ) {
                return;
            }
            for ( String role : collectionRoles ) {
                CollectionPersister collectionPersister = factory.getCollectionPersister( role );
                if ( !collectionPersister.hasCache() ) {
                    continue;
                }
                if ( !(collectionPersister instanceof Joinable) ) {
                    continue;
                }
                String mappedBy = mappedByFieldMapping.get( ((Joinable) collectionPersister).getName() );
                if ( mappedBy != null ) {
                    int i = persister.getEntityMetamodel().getPropertyIndex( mappedBy );
                    Serializable oldId = null;
                    if ( oldState != null ) {
                        oldId = session.getIdentifier( oldState[i] );
                    }
                    Object ref = persister.getPropertyValue( entity, i );
                    Serializable id = null;
                    if ( ref != null ) {
                        id = session.getIdentifier( ref );
                    }
                    if ( id != null && !id.equals( oldId ) ) {
                        evict( id, collectionPersister, session );
                        if ( oldId != null ) {
                            evict( id, collectionPersister, session );
                        }
                    }
                }
                else {
                    LOGGER.debug( "Evict CollectionRegion " + role );
                    collectionPersister.getCacheAccessStrategy().evictAll();
                }
            }
        }
        catch (Exception e) {
            LOGGER.error( "", e );
        }
    }

    private void evict(Serializable id, CollectionPersister collectionPersister, EventSource session) {
        LOGGER.debug( "Evict CollectionRegion " + collectionPersister.getRole() + " for id " + id );
        collectionPersister.getCacheAccessStrategy().evict(
                session.generateCacheKey(
                        id,
                        collectionPersister.getKeyType(),
                        collectionPersister.getRole()
                )
        );
    }
}

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2016-06-04
    • 1970-01-01
    • 2013-05-10
    • 2021-04-10
    • 2021-02-16
    • 2020-08-16
    • 1970-01-01
    • 2017-11-17
    相关资源
    最近更新 更多