⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sessionfactory.java

📁 人力资源管理系统主要包括:人员管理、招聘管理、培训管理、奖惩管理和薪金管理五大管理模块。
💻 JAVA
字号:
//$Id: SessionFactory.java,v 1.10.2.4 2003/11/17 15:09:38 oneovthafew Exp $package net.sf.hibernate;import java.io.Serializable;import java.sql.Connection;import java.util.Map;import javax.naming.Referenceable;import net.sf.hibernate.metadata.ClassMetadata;import net.sf.hibernate.metadata.CollectionMetadata;/** * Creates <tt>Session</tt>s. Usually an application has a single <tt>SessionFactory</tt>.  * Threads servicing client requests obtain <tt>Session</tt>s from the factory.<br> * <br> * Implementors must be threadsafe.<br> * <br> * <tt>SessionFactory</tt>s are immutable. The behaviour of a <tt>SessionFactory</tt> is * controlled by properties supplied at configuration time. These properties are defined * on <tt>Environment</tt>.   *  * @see Session * @see net.sf.hibernate.cfg.Environment * @see net.sf.hibernate.cfg.Configuration * @see net.sf.hibernate.connection.ConnectionProvider * @see net.sf.hibernate.transaction.TransactionFactory * @author Gavin King */public interface SessionFactory extends Referenceable, Serializable {		/**	 * Open a <tt>Session</tt> on the given connection.	 *	 * @param connection a connection provided by the application.	 * @return Session	 */	public Session openSession(Connection connection);		/**	 * Create database connection and open a <tt>Session</tt> on it, specifying an	 * interceptor.	 *	 * @param interceptor a session-scoped interceptor	 * @return Session	 * @throws HibernateException	 */	public Session openSession(Interceptor interceptor) throws HibernateException;		/**	 * Open a <tt>Session</tt> on the given connection, specifying an interceptor.	 *	 * @param connection a connection provided by the application.	 * @param interceptor a session-scoped interceptor	 * @return Session	 */	public Session openSession(Connection connection, Interceptor interceptor);		/**	 * Create database connection and open a <tt>Session</tt> on it.	 *	 * @return Session	 * @throws HibernateException	 */	public Session openSession() throws HibernateException;		/**	 * Create a new databinder.	 *	 * @return Databinder	 */	public Databinder openDatabinder() throws HibernateException;		/**	 * Get the <tt>ClassMetadata</tt> associated with the given entity class	 *	 * @see net.sf.hibernate.metadata.ClassMetadata	 */	public ClassMetadata getClassMetadata(Class persistentClass) throws HibernateException;		/**	 * Get the <tt>CollectionMetadata</tt> associated with the named collection role	 *	 * @see net.sf.hibernate.metadata.CollectionMetadata	 */	public CollectionMetadata getCollectionMetadata(String roleName) throws HibernateException;		/**	 * Get all <tt>ClassMetadata</tt> as a <tt>Map</tt> from <tt>Class</tt>	 * to metadata object	 *	 * @see net.sf.hibernate.metadata.ClassMetadata	 * @return a map from <tt>Class</tt> to <tt>ClassMetaData</tt>	 */	public Map getAllClassMetadata() throws HibernateException;		/**	 * Get all <tt>CollectionMetadata</tt> as a <tt>Map</tt> from role name	 * to metadata object	 *	 * @see net.sf.hibernate.metadata.CollectionMetadata	 * @return a map from <tt>String</tt> to <tt>CollectionMetadata</tt>	 */	public Map getAllCollectionMetadata() throws HibernateException;		/**	 * Destroy this <tt>SessionFactory</tt> and release all resources (caches,	 * connection pools, etc). It is the responsibility of the application	 * to ensure that there are no open <tt>Session</tt>s before calling	 * <tt>close()</tt>.	 */	public void close() throws HibernateException;		/**	 * Evict all entries from the second-level cache. This method occurs outside	 * of any transaction; it performs an immediate "hard" remove, so does not respect 	 * any transaction isolation semantics of the usage strategy. Use with care.	 */	public void evict(Class persistentClass) throws HibernateException;	/**	 * Evict an entry from the second-level  cache. This method occurs outside	 * of any transaction; it performs an immediate "hard" remove, so does not respect 	 * any transaction isolation semantics of the usage strategy. Use with care.	 */	public void evict(Class persistentClass, Serializable id) throws HibernateException;	/**	 * Evict all entries from the second-level cache. This method occurs outside	 * of any transaction; it performs an immediate "hard" remove, so does not respect 	 * any transaction isolation semantics of the usage strategy. Use with care.	 */	public void evictCollection(String roleName) throws HibernateException;	/**	 * Evict an entry from the second-level cache. This method occurs outside	 * of any transaction; it performs an immediate "hard" remove, so does not respect 	 * any transaction isolation semantics of the usage strategy. Use with care.	 */	public void evictCollection(String roleName, Serializable id) throws HibernateException;		/**	 * Evict any query result sets cached in the default query cache region.	 */	public void evictQueries() throws HibernateException;	/**	 * Evict any query result sets cached in the named query cache region.	 */	public void evictQueries(String cacheRegion) throws HibernateException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -