📄 persistencemanagerfactoryutils.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.jdo;
import javax.jdo.JDODataStoreException;
import javax.jdo.JDOException;
import javax.jdo.JDOFatalDataStoreException;
import javax.jdo.JDOFatalUserException;
import javax.jdo.JDOObjectNotFoundException;
import javax.jdo.JDOOptimisticVerificationException;
import javax.jdo.JDOUserException;
import javax.jdo.PersistenceManager;
import javax.jdo.PersistenceManagerFactory;
import javax.jdo.Query;
import javax.sql.DataSource;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.dao.DataAccessException;
import org.springframework.dao.DataAccessResourceFailureException;
import org.springframework.jdbc.datasource.DataSourceUtils;
import org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator;
import org.springframework.jdbc.support.SQLExceptionTranslator;
import org.springframework.jdbc.support.SQLStateSQLExceptionTranslator;
import org.springframework.transaction.support.TransactionSynchronizationAdapter;
import org.springframework.transaction.support.TransactionSynchronizationManager;
import org.springframework.util.Assert;
/**
* Helper class featuring methods for JDO PersistenceManager handling,
* allowing for reuse of PersistenceManager instances within transactions.
*
* <p>Used by JdoTemplate, JdoInterceptor, and JdoTransactionManager.
* Can also be used directly in application code, e.g. in combination
* with JdoInterceptor.
*
* @author Juergen Hoeller
* @since 03.06.2003
* @see JdoTemplate
* @see JdoInterceptor
* @see JdoTransactionManager
*/
public abstract class PersistenceManagerFactoryUtils {
/**
* Order value for TransactionSynchronization objects that clean up JDO
* PersistenceManagers. Return DataSourceUtils.CONNECTION_SYNCHRONIZATION_ORDER - 100
* to execute PersistenceManager cleanup before JDBC Connection cleanup, if any.
* @see org.springframework.jdbc.datasource.DataSourceUtils#CONNECTION_SYNCHRONIZATION_ORDER
*/
public static final int PERSISTENCE_MANAGER_SYNCHRONIZATION_ORDER =
DataSourceUtils.CONNECTION_SYNCHRONIZATION_ORDER - 100;
private static final Log logger = LogFactory.getLog(PersistenceManagerFactoryUtils.class);
/**
* Create an appropriate SQLExceptionTranslator for the given PersistenceManagerFactory.
* If a DataSource is found, create a SQLErrorCodeSQLExceptionTranslator for the
* DataSource; else, fall back to a SQLStateSQLExceptionTranslator.
* @param pmf the PersistenceManagerFactory to create the translator for
* @return the SQLExceptionTranslator
* @see javax.jdo.PersistenceManagerFactory#getConnectionFactory
* @see org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator
* @see org.springframework.jdbc.support.SQLStateSQLExceptionTranslator
*/
public static SQLExceptionTranslator newJdbcExceptionTranslator(PersistenceManagerFactory pmf) {
SQLExceptionTranslator jdbcExceptionTranslator = null;
// check for PersistenceManagerFactory's DataSource
Object cf = pmf.getConnectionFactory();
if (cf instanceof DataSource) {
jdbcExceptionTranslator = new SQLErrorCodeSQLExceptionTranslator((DataSource) cf);
}
else {
jdbcExceptionTranslator = new SQLStateSQLExceptionTranslator();
}
return jdbcExceptionTranslator;
}
/**
* Get a JDO PersistenceManager via the given factory. Is aware of a
* corresponding PersistenceManager bound to the current thread,
* for example when using JdoTransactionManager. Will create a new
* PersistenceManager else, if allowCreate is true.
* @param pmf PersistenceManagerFactory to create the session with
* @param allowCreate if a new PersistenceManager should be created if no thread-bound found
* @return the PersistenceManager
* @throws DataAccessResourceFailureException if the PersistenceManager couldn't be created
* @throws IllegalStateException if no thread-bound PersistenceManager found and allowCreate false
*/
public static PersistenceManager getPersistenceManager(PersistenceManagerFactory pmf, boolean allowCreate)
throws DataAccessResourceFailureException, IllegalStateException {
return getPersistenceManager(pmf, allowCreate, true);
}
/**
* Get a JDO PersistenceManager via the given factory. Is aware of a
* corresponding PersistenceManager bound to the current thread,
* for example when using JdoTransactionManager. Will create a new
* PersistenceManager else, if allowCreate is true.
* @param pmf PersistenceManagerFactory to create the session with
* @param allowCreate if a new PersistenceManager should be created if no thread-bound found
* @param allowSynchronization if a new JDO PersistenceManager is supposed to be
* registered with transaction synchronization (if synchronization is active).
* This will always be true for typical data access code.
* @return the PersistenceManager
* @throws DataAccessResourceFailureException if the PersistenceManager couldn't be created
* @throws IllegalStateException if no thread-bound PersistenceManager found and allowCreate false
*/
public static PersistenceManager getPersistenceManager(
PersistenceManagerFactory pmf, boolean allowCreate, boolean allowSynchronization)
throws DataAccessResourceFailureException, IllegalStateException {
Assert.notNull(pmf, "No PersistenceManagerFactory specified");
PersistenceManagerHolder pmHolder =
(PersistenceManagerHolder) TransactionSynchronizationManager.getResource(pmf);
if (pmHolder != null) {
return pmHolder.getPersistenceManager();
}
if (!allowCreate) {
throw new IllegalStateException("No JDO persistence manager bound to thread, " +
"and configuration does not allow creation of new one here");
}
logger.debug("Opening JDO persistence manager");
try {
PersistenceManager pm = pmf.getPersistenceManager();
if (allowSynchronization && TransactionSynchronizationManager.isSynchronizationActive()) {
logger.debug("Registering transaction synchronization for JDO persistence manager");
// use same PersistenceManager for further JDO actions within the transaction
// thread object will get removed by synchronization at transaction completion
pmHolder = new PersistenceManagerHolder(pm);
TransactionSynchronizationManager.bindResource(pmf, pmHolder);
TransactionSynchronizationManager.registerSynchronization(
new PersistenceManagerSynchronization(pmHolder, pmf));
}
return pm;
}
catch (JDOException ex) {
throw new DataAccessResourceFailureException("Cannot get JDO persistence manager", ex);
}
}
/**
* Apply the current transaction timeout, if any, to the given JDO Query object.
* @param query the JDO Query object
* @param pmf JDO PersistenceManagerFactory that the Query was created for
* @param jdoDialect the JdoDialect to use for applying a query timeout
* (must not be null)
* @see JdoDialect#applyQueryTimeout
*/
public static void applyTransactionTimeout(
Query query, PersistenceManagerFactory pmf, JdoDialect jdoDialect) throws JDOException {
Assert.notNull(query, "No Query object specified");
PersistenceManagerHolder pmHolder =
(PersistenceManagerHolder) TransactionSynchronizationManager.getResource(pmf);
if (pmHolder != null && pmHolder.hasTimeout()) {
jdoDialect.applyQueryTimeout(query, pmHolder.getTimeToLiveInSeconds());
}
}
/**
* Convert the given JDOException to an appropriate exception from the
* org.springframework.dao hierarchy.
* <p>The most important cases like object not found or optimistic verification
* failure are covered here. For more fine-granular conversion, JdoAccessor and
* JdoTransactionManager support sophisticated translation of exceptions via a
* JdoDialect.
* @param ex JDOException that occured
* @return the corresponding DataAccessException instance
* @see JdoAccessor#convertJdoAccessException
* @see JdoTransactionManager#convertJdoAccessException
* @see JdoDialect#translateException
*/
public static DataAccessException convertJdoAccessException(JDOException ex) {
if (ex instanceof JDOObjectNotFoundException) {
throw new JdoObjectRetrievalFailureException((JDOObjectNotFoundException) ex);
}
else if (ex instanceof JDOOptimisticVerificationException) {
throw new JdoOptimisticLockingFailureException((JDOOptimisticVerificationException) ex);
}
else if (ex instanceof JDODataStoreException) {
return new JdoResourceFailureException((JDODataStoreException) ex);
}
else if (ex instanceof JDOFatalDataStoreException) {
return new JdoResourceFailureException((JDOFatalDataStoreException) ex);
}
else if (ex instanceof JDOUserException) {
return new JdoUsageException((JDOUserException) ex);
}
else if (ex instanceof JDOFatalUserException) {
return new JdoUsageException((JDOFatalUserException) ex);
}
else {
// fallback: assuming internal exception
return new JdoSystemException(ex);
}
}
/**
* Close the given PersistenceManager, created via the given factory,
* if it isn't bound to the thread.
* @param pm PersistenceManager to close
* @param pmf PersistenceManagerFactory that the PersistenceManager was created with
*/
public static void closePersistenceManagerIfNecessary(PersistenceManager pm, PersistenceManagerFactory pmf) {
if (pm == null) {
return;
}
PersistenceManagerHolder pmHolder =
(PersistenceManagerHolder) TransactionSynchronizationManager.getResource(pmf);
if (pmHolder != null && pm == pmHolder.getPersistenceManager()) {
// It's the transactional PersistenceManager: Don't close it.
return;
}
logger.debug("Closing JDO persistence manager");
try {
pm.close();
}
catch (JDOException ex) {
logger.error("Could not close JDO persistence manager", ex);
}
}
/**
* Callback for resource cleanup at the end of a non-JDO transaction
* (e.g. when participating in a JTA transaction).
*/
private static class PersistenceManagerSynchronization extends TransactionSynchronizationAdapter {
private final PersistenceManagerHolder persistenceManagerHolder;
private final PersistenceManagerFactory persistenceManagerFactory;
private PersistenceManagerSynchronization(PersistenceManagerHolder pmHolder, PersistenceManagerFactory pmf) {
this.persistenceManagerHolder = pmHolder;
this.persistenceManagerFactory = pmf;
}
public int getOrder() {
return PERSISTENCE_MANAGER_SYNCHRONIZATION_ORDER;
}
public void suspend() {
TransactionSynchronizationManager.unbindResource(this.persistenceManagerFactory);
}
public void resume() {
TransactionSynchronizationManager.bindResource(this.persistenceManagerFactory, this.persistenceManagerHolder);
}
public void beforeCompletion() {
TransactionSynchronizationManager.unbindResource(this.persistenceManagerFactory);
closePersistenceManagerIfNecessary(
this.persistenceManagerHolder.getPersistenceManager(),
this.persistenceManagerFactory);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -