All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.orm.hibernate3.support.IdTransferringMergeEventListener Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/*
 * Copyright 2002-2012 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.orm.hibernate3.support;

import java.io.Serializable;
import java.util.Map;

import org.hibernate.engine.SessionImplementor;
import org.hibernate.event.MergeEvent;
import org.hibernate.event.def.DefaultMergeEventListener;
import org.hibernate.persister.entity.EntityPersister;

/**
 * Extension of Hibernate's DefaultMergeEventListener, transferring the ids
 * of newly saved objects to the corresponding original objects (that are part
 * of the detached object graph passed into the {@code merge} method).
 *
 * 

Transferring newly assigned ids to the original graph allows for continuing * to use the original object graph, despite merged copies being registered with * the current Hibernate Session. This is particularly useful for web applications * that might want to store an object graph and then render it in a web view, * with links that include the id of certain (potentially newly saved) objects. * *

The merge behavior given by this MergeEventListener is nearly identical * to TopLink's merge behavior. See PetClinic for an example, which relies on * ids being available for newly saved objects: the {@code HibernateClinic} * and {@code TopLinkClinic} DAO implementations both use straight merge * calls, with the Hibernate SessionFactory configuration specifying an * {@code IdTransferringMergeEventListener}. * *

Typically specified as entry for LocalSessionFactoryBean's "eventListeners" * map, with key "merge". * * @author Juergen Hoeller * @since 1.2 * @see org.springframework.orm.hibernate3.LocalSessionFactoryBean#setEventListeners(java.util.Map) */ @SuppressWarnings("serial") public class IdTransferringMergeEventListener extends DefaultMergeEventListener { /** * Hibernate 3.1 implementation of ID transferral. */ @Override protected void entityIsTransient(MergeEvent event, Map copyCache) { super.entityIsTransient(event, copyCache); SessionImplementor session = event.getSession(); EntityPersister persister = session.getEntityPersister(event.getEntityName(), event.getEntity()); // Extract id from merged copy (which is currently registered with Session). Serializable id = persister.getIdentifier(event.getResult(), session.getEntityMode()); // Set id on original object (which remains detached). persister.setIdentifier(event.getOriginal(), id, session.getEntityMode()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy