📄 drivermanagerdatasource.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.jdbc.datasource;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import org.springframework.jdbc.CannotGetJdbcConnectionException;
/**
* Implementation of SmartDataSource that configures a plain old JDBC Driver
* via bean properties, and returns a new connection every time.
*
* <p>Useful for test or standalone environments outside of a J2EE container, either
* as a DataSource bean in a respective ApplicationContext, or in conjunction with a
* simple JNDI environment. Pool-assuming Connection.close() calls will simply
* close the connection, so any DataSource-aware persistence code should work.
*
* <p>In a J2EE container, it is recommended to use a JNDI DataSource provided by
* the container. Such a DataSource can be exported as a DataSource bean in an
* ApplicationContext via JndiObjectFactoryBean, for seamless switching to and from
* a local DataSource bean like this class.
*
* <p>If you need a "real" connection pool outside of a J2EE container, consider
* <a href="http://jakarta.apache.org/commons/dbcp">Apache's Jakarta Commons DBCP</a>.
* Its BasicDataSource is a full connection pool bean, supporting the same basic
* properties as this class plus specific settings. It can be used as a replacement
* for an instance of this class just by changing the class name of the bean
* definition to "org.apache.commons.dbcp.BasicDataSource".
*
* @author Juergen Hoeller
* @since 14.03.2003
* @version $Id: DriverManagerDataSource.java,v 1.7 2004/03/18 02:46:05 trisberg Exp $
* @see org.springframework.jndi.support.SimpleNamingContextBuilder
* @see org.springframework.jndi.JndiObjectFactoryBean
* @see org.apache.commons.dbcp.BasicDataSource
*/
public class DriverManagerDataSource extends AbstractDataSource implements SmartDataSource {
private String driverClassName = "";
private String url = "";
private String username = "";
private String password = "";
/**
* Constructor for bean-style configuration.
*/
public DriverManagerDataSource() {
}
/**
* Create a new SingleConnectionDataSource with the given standard
* DriverManager parameters.
*/
public DriverManagerDataSource(String driverClassName, String url, String username, String password)
throws CannotGetJdbcConnectionException {
setDriverClassName(driverClassName);
setUrl(url);
setUsername(username);
setPassword(password);
}
public void setDriverClassName(String driverClassName) throws CannotGetJdbcConnectionException {
this.driverClassName = driverClassName;
try {
Class.forName(this.driverClassName, true, Thread.currentThread().getContextClassLoader());
}
catch (ClassNotFoundException ex) {
throw new CannotGetJdbcConnectionException("Could not load JDBC driver class [" +
this.driverClassName + "]", ex);
}
logger.info("Loaded JDBC driver: " + this.driverClassName);
}
public String getDriverClassName() {
return driverClassName;
}
public void setUrl(String url) {
this.url = url;
}
public String getUrl() {
return url;
}
public void setUsername(String username) {
this.username = username;
}
public String getUsername() {
return username;
}
public void setPassword(String password) {
this.password = password;
}
public String getPassword() {
return password;
}
/**
* This DataSource returns a new connection every time: Close it when returning one to the "pool".
*/
public boolean shouldClose(Connection conn) {
return true;
}
public Connection getConnection() throws SQLException {
return getConnectionFromDriverManager();
}
public Connection getConnection(String username, String password) throws SQLException {
return getConnectionFromDriverManager(this.url, username, password);
}
/**
* Get a new Connection from DriverManager, with the connection
* properties of this DataSource.
*/
protected Connection getConnectionFromDriverManager() throws SQLException {
return getConnectionFromDriverManager(this.url, this.username, this.password);
}
/**
* Getting a connection using the nasty static from DriverManager is extracted
* into a protected method to allow for easy unit testing.
*/
protected Connection getConnectionFromDriverManager(String url, String username, String password)
throws SQLException {
if (logger.isInfoEnabled()) {
logger.info("Creating new JDBC connection to [" + url + "]");
}
return DriverManager.getConnection(url, username, password);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -