📄 ojbfactoryutils.java
字号:
/*
* Copyright 2002-2004 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.ojb;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.ojb.broker.OJBRuntimeException;
import org.apache.ojb.broker.PBKey;
import org.apache.ojb.broker.PersistenceBroker;
import org.apache.ojb.broker.PersistenceBrokerFactory;
import org.springframework.dao.DataAccessResourceFailureException;
import org.springframework.jdbc.datasource.DataSourceUtils;
import org.springframework.transaction.support.TransactionSynchronizationAdapter;
import org.springframework.transaction.support.TransactionSynchronizationManager;
/**
* Helper class featuring methods for OJB PersistenceBroker handling,
* allowing for reuse of PersistenceBroker instances within transactions.
*
* <p>Used by PersistenceBrokerTemplate and PersistenceBrokerTransactionManager.
* Can also be used directly in application code.
*
* @author Juergen Hoeller
* @since 1.1
* @see PersistenceBrokerTemplate
* @see PersistenceBrokerTransactionManager
* @see org.springframework.transaction.jta.JtaTransactionManager
*/
public abstract class OjbFactoryUtils {
/**
* Order value for TransactionSynchronization objects that clean up OJB
* PersistenceBrokers. Return DataSourceUtils.CONNECTION_SYNCHRONIZATION_ORDER - 100
* to execute PersistenceBroker cleanup before JDBC Connection cleanup, if any.
* @see org.springframework.jdbc.datasource.DataSourceUtils#CONNECTION_SYNCHRONIZATION_ORDER
*/
public static final int PERSISTENCE_BROKER_SYNCHRONIZATION_ORDER =
DataSourceUtils.CONNECTION_SYNCHRONIZATION_ORDER - 100;
private static final Log logger = LogFactory.getLog(OjbFactoryUtils.class);
/**
* Get an OJB PersistenceBroker for the given PBKey. Is aware of a
* corresponding PersistenceBroker bound to the current thread, for
* example when using PersistenceBrokerTransactionManager. Will
* create a new PersistenceBroker else, if allowCreate is true.
* @param pbKey PBKey to create the PersistenceBroker for
* @param allowCreate if a new PersistenceBroker should be created if no thread-bound found
* @return the PersistenceBroker
* @throws DataAccessResourceFailureException if the PersistenceBroker couldn't be created
* @throws IllegalStateException if no thread-bound PersistenceBroker found and allowCreate false
*/
public static PersistenceBroker getPersistenceBroker(PBKey pbKey, boolean allowCreate)
throws DataAccessResourceFailureException, IllegalStateException {
return getPersistenceBroker(pbKey, allowCreate, true);
}
/**
* Get an OJB PersistenceBroker for the given PBKey. Is aware of a
* corresponding PersistenceBroker bound to the current thread, for
* example when using PersistenceBrokerTransactionManager. Will
* create a new PersistenceBroker else.
* @param pbKey PBKey to create the PersistenceBroker for
* @param allowCreate if a new PersistenceBroker should be created if no thread-bound found
* @param allowSynchronization if a new OJB PersistenceBroker is supposed to be
* registered with transaction synchronization (if synchronization is active).
* This will always be true for typical data access code.
* @return the PersistenceBroker
* @throws DataAccessResourceFailureException if the PersistenceBroker couldn't be created
* @throws IllegalStateException if no thread-bound PersistenceBroker found and allowCreate false
*/
public static PersistenceBroker getPersistenceBroker(
PBKey pbKey, boolean allowCreate, boolean allowSynchronization)
throws DataAccessResourceFailureException, IllegalStateException {
PersistenceBrokerHolder pbHolder =
(PersistenceBrokerHolder) TransactionSynchronizationManager.getResource(pbKey);
if (pbHolder != null) {
return pbHolder.getPersistenceBroker();
}
if (!allowCreate) {
throw new IllegalStateException(
"No OJB persistence broker bound to thread, and configuration " +
"does not allow creation of new one here");
}
logger.debug("Opening OJB persistence broker");
try {
PersistenceBroker pb = PersistenceBrokerFactory.createPersistenceBroker(pbKey);
if (allowSynchronization && TransactionSynchronizationManager.isSynchronizationActive()) {
logger.debug("Registering transaction synchronization for OJB persistence broker");
pbHolder = new PersistenceBrokerHolder(pb);
TransactionSynchronizationManager.bindResource(pbKey, pbHolder);
TransactionSynchronizationManager.registerSynchronization(
new PersistenceBrokerSynchronization(pbHolder, pbKey));
}
return pb;
}
catch (OJBRuntimeException ex) {
throw new DataAccessResourceFailureException("Could not open OJB persistence broker", ex);
}
}
/**
* Close the given PersistenceBroker, created for the given PBKey,
* if it isn't bound to the thread.
* @param pb PersistenceBroker to close
* @param pbKey PBKey that the PersistenceBroker was created with
*/
public static void closePersistenceBrokerIfNecessary(PersistenceBroker pb, PBKey pbKey) {
if (pb == null) {
return;
}
PersistenceBrokerHolder pbHolder =
(PersistenceBrokerHolder) TransactionSynchronizationManager.getResource(pbKey);
if (pbHolder != null && pb == pbHolder.getPersistenceBroker()) {
// It's the transactional PersistenceBroker: Don't close it.
return;
}
logger.debug("Closing OJB persistence broker");
pb.close();
}
/**
* Callback for resource cleanup at the end of a non-OJB transaction
* (e.g. when participating in a JTA transaction).
*/
private static class PersistenceBrokerSynchronization extends TransactionSynchronizationAdapter {
private final PersistenceBrokerHolder persistenceBrokerHolder;
private final PBKey pbKey;
private PersistenceBrokerSynchronization(PersistenceBrokerHolder pbHolder, PBKey pbKey) {
this.persistenceBrokerHolder = pbHolder;
this.pbKey = pbKey;
}
public int getOrder() {
return PERSISTENCE_BROKER_SYNCHRONIZATION_ORDER;
}
public void suspend() {
TransactionSynchronizationManager.unbindResource(this.pbKey);
}
public void resume() {
TransactionSynchronizationManager.bindResource(this.pbKey, this.persistenceBrokerHolder);
}
public void beforeCompletion() {
TransactionSynchronizationManager.unbindResource(this.pbKey);
closePersistenceBrokerIfNecessary(this.persistenceBrokerHolder.getPersistenceBroker(), this.pbKey);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -