📄 hibernateoperations.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.hibernate;
import java.io.Serializable;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import net.sf.hibernate.LockMode;
import net.sf.hibernate.type.Type;
import org.springframework.dao.DataAccessException;
/**
* Interface that specifies a basic set of Hibernate operations.
* Implemented by HibernateTemplate. Not often used, but a useful option
* to enhance testability, as it can easily be mocked or stubbed.
*
* <p>Provides HibernateTemplate's data access methods that mirror
* various Session methods.
*
* @author Juergen Hoeller
* @since 05.02.2004
* @see HibernateTemplate
* @see net.sf.hibernate.Session
*/
public interface HibernateOperations {
/**
* Execute the action specified by the given action object within a session.
* Application exceptions thrown by the action object get propagated to the
* caller (can only be unchecked). Hibernate exceptions are transformed into
* appropriate DAO ones. Allows for returning a result object, i.e. a domain
* object or a collection of domain objects.
* <p>Note: Callback code is not supposed to handle transactions itself!
* Use an appropriate transaction manager like HibernateTransactionManager.
* Generally, callback code must not touch any Session lifecycle methods,
* like close, disconnect, or reconnect, to let the template do its work.
* @param action callback object that specifies the Hibernate action
* @return a result object returned by the action, or null
* @throws org.springframework.dao.DataAccessException in case of Hibernate errors
* @see HibernateTransactionManager
* @see org.springframework.dao
* @see org.springframework.transaction
*/
Object execute(HibernateCallback action) throws DataAccessException;
/**
* Execute the specified action assuming that the result object is a List.
* This is a convenience method for executing Hibernate find calls or
* queries within an action.
* @param action action object that specifies the Hibernate action
* @return a result object returned by the action, or null
* @throws org.springframework.dao.DataAccessException in case of Hibernate errors
*/
List executeFind(HibernateCallback action) throws DataAccessException;
//-------------------------------------------------------------------------
// Convenience methods for loading individual objects
//-------------------------------------------------------------------------
/**
* Return the persistent instance of the given entity class
* with the given identifier, or null if not found.
* @param entityClass a persistent class
* @param id an identifier of the persistent instance
* @return the persistent instance, or null if not found
* @throws org.springframework.dao.DataAccessException in case of Hibernate errors
* @see net.sf.hibernate.Session#get(Class, java.io.Serializable)
*/
Object get(Class entityClass, Serializable id) throws DataAccessException;
/**
* Return the persistent instance of the given entity class
* with the given identifier, or null if not found.
* Obtains the specified lock mode if the instance exists.
* @param entityClass a persistent class
* @param id an identifier of the persistent instance
* @param lockMode the lock mode to obtain
* @return the persistent instance, or null if not found
* @throws org.springframework.dao.DataAccessException in case of Hibernate errors
* @see net.sf.hibernate.Session#get(Class, java.io.Serializable, net.sf.hibernate.LockMode)
*/
Object get(Class entityClass, Serializable id, LockMode lockMode)
throws DataAccessException;
/**
* Return the persistent instance of the given entity class
* with the given identifier, throwing an exception if not found.
* @param entityClass a persistent class
* @param id an identifier of the persistent instance
* @return the persistent instance
* @throws HibernateObjectRetrievalFailureException if the instance could not be found
* @throws org.springframework.dao.DataAccessException in case of Hibernate errors
* @see net.sf.hibernate.Session#load(Class, java.io.Serializable)
*/
Object load(Class entityClass, Serializable id) throws DataAccessException;
/**
* Return the persistent instance of the given entity class
* with the given identifier, throwing an exception if not found.
* Obtains the specified lock mode if the instance exists.
* @param entityClass a persistent class
* @param id an identifier of the persistent instance
* @param lockMode the lock mode to obtain
* @return the persistent instance
* @throws HibernateObjectRetrievalFailureException if the instance could not be found
* @throws org.springframework.dao.DataAccessException in case of Hibernate errors
* @see net.sf.hibernate.Session#load(Class, java.io.Serializable)
*/
Object load(Class entityClass, Serializable id, LockMode lockMode)
throws DataAccessException;
/**
* Return all persistent instances of the given entity class.
* Note: Use queries or criteria for retrieving a specific subset.
* @param entityClass a persistent class
* @return a List containing 0 or more persistent instances
* @throws org.springframework.dao.DataAccessException if there is a Hibernate error
* @see net.sf.hibernate.Session#createCriteria
*/
List loadAll(Class entityClass) throws DataAccessException;
/**
* Re-read the state of the given persistent instance.
* @param entity the persistent instance to re-read
* @throws org.springframework.dao.DataAccessException in case of Hibernate errors
* @see net.sf.hibernate.Session#refresh(Object)
*/
void refresh(Object entity) throws DataAccessException;
/**
* Re-read the state of the given persistent instance.
* Obtains the specified lock mode for the instance.
* @param entity the persistent instance to re-read
* @param lockMode the lock mode to obtain
* @throws org.springframework.dao.DataAccessException in case of Hibernate errors
* @see net.sf.hibernate.Session#refresh(Object, net.sf.hibernate.LockMode)
*/
void refresh(Object entity, LockMode lockMode) throws DataAccessException;
/**
* Check whether the given object is in the Session cache.
* @param entity the persistence instance to check
* @return whether the given object is in the Session cache
* @throws org.springframework.dao.DataAccessException if there is a Hibernate error
* @see net.sf.hibernate.Session#contains
*/
boolean contains(Object entity) throws DataAccessException;
/**
* Remove the given object from the Session cache.
* @param entity the persistent instance to evict
* @throws org.springframework.dao.DataAccessException in case of Hibernate errors
* @see net.sf.hibernate.Session#evict
*/
void evict(Object entity) throws DataAccessException;
//-------------------------------------------------------------------------
// Convenience methods for storing individual objects
//-------------------------------------------------------------------------
/**
* Obtain the specified lock level upon the given object, implicitly
* checking whether the corresponding database entry still exists
* (throwing an OptimisticLockingFailureException if not found).
* @param entity the persistent instance to lock
* @param lockMode the lock mode to obtain
* @throws org.springframework.dao.DataAccessException in case of Hibernate errors
* @see HibernateOptimisticLockingFailureException
* @see net.sf.hibernate.Session#lock(Object, net.sf.hibernate.LockMode)
*/
void lock(Object entity, LockMode lockMode) throws DataAccessException;
/**
* Persist the given transient instance.
* @param entity the transient instance to persist
* @return the generated identifier
* @throws org.springframework.dao.DataAccessException in case of Hibernate errors
* @see net.sf.hibernate.Session#save(Object)
*/
Serializable save(Object entity) throws DataAccessException;
/**
* Persist the given transient instance with the given identifier.
* @param entity the transient instance to persist
* @param id the identifier to assign
* @throws org.springframework.dao.DataAccessException in case of Hibernate errors
* @see net.sf.hibernate.Session#save(Object, java.io.Serializable)
*/
void save(Object entity, Serializable id) throws DataAccessException;
/**
* Save respectively update the given persistent instance,
* according to its ID (matching the configured "unsaved-value"?).
* @param entity the persistent instance to save respectively update
* (to be associated with the Hibernate Session)
* @throws DataAccessException in case of Hibernate errors
* @see net.sf.hibernate.Session#saveOrUpdate(Object)
*/
void saveOrUpdate(Object entity) throws DataAccessException;
/**
* Save respectively update the contents of given persistent object,
* according to its ID (matching the configured "unsaved-value"?).
* Will copy the contained fields to an already loaded instance
* with the same ID, if appropriate.
* @param entity the persistent object to save respectively update
* (<i>not</i> necessarily to be associated with the Hibernate Session)
* @return the actually associated persistent object
* (either an already loaded instance with the same ID, or the given object)
* @throws DataAccessException in case of Hibernate errors
* @see net.sf.hibernate.Session#saveOrUpdateCopy(Object)
*/
Object saveOrUpdateCopy(Object entity) throws DataAccessException;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -