datasourceconnectionprovider.java

来自「hibernate-3.0.5 中文文档」· Java 代码 · 共 84 行

JAVA
84
字号
//$Id: DatasourceConnectionProvider.java,v 1.2 2005/04/19 15:39:06 steveebersole Exp $package org.hibernate.connection;import java.sql.Connection;import java.sql.SQLException;import java.util.Properties;import javax.sql.DataSource;import org.hibernate.HibernateException;import org.hibernate.cfg.Environment;import org.hibernate.util.NamingHelper;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;/** * A connection provider that uses a <tt>DataSource</tt> registered with JNDI. * Hibernate will use this <tt>ConnectionProvider</tt> by default if the * property <tt>hibernate.connection.datasource</tt> is set. * @see ConnectionProvider * @author Gavin King */public class DatasourceConnectionProvider implements ConnectionProvider {	private DataSource ds;	private String user;	private String pass;	private static final Log log = LogFactory.getLog(DatasourceConnectionProvider.class);	public void configure(Properties props) throws HibernateException {		String jndiName = props.getProperty(Environment.DATASOURCE);		if (jndiName==null) {			String msg = "datasource JNDI name was not specified by property " + Environment.DATASOURCE;			log.fatal(msg);			throw new HibernateException(msg);		}		user = props.getProperty(Environment.USER);		pass = props.getProperty(Environment.PASS);		try {			ds = (DataSource) NamingHelper.getInitialContext(props).lookup(jndiName);		}		catch (Exception e) {			log.fatal( "Could not find datasource: " + jndiName, e );			throw new HibernateException( "Could not find datasource", e );		}		if (ds==null) throw new HibernateException( "Could not find datasource: " + jndiName );		log.info( "Using datasource: " + jndiName );	}	public Connection getConnection() throws SQLException {		if (user != null || pass != null) {			return ds.getConnection(user, pass);		}		else {			return ds.getConnection();		}	}	public void closeConnection(Connection conn) throws SQLException {		conn.close();	}	public void close() {}	/**	 * @see ConnectionProvider#supportsAggressiveRelease()	 */	public boolean supportsAggressiveRelease() {		return true;	}}

⌨️ 快捷键说明

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