/* * Copyright 2004-2009 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.apache.lucene.store.jdbc.datasource; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; /** * Simple implementation of the standard JDBC DataSource interface, configuring * a plain old JDBC Driver via bean properties, and returning a new Connection * for every <code>getConnection</code> call. * <p/> * Useful for test or standalone environments outside of a J2EE container. * Pool-assuming <code>Connection.close()</code> 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. * <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. * <p/> * Note, autoCommit property defaults to <code>false<code>. * * @author kimchy */ public class DriverManagerDataSource extends AbstractDataSource { private String driverClassName; private String url; private String username; private String password; private boolean autoCommit; /** * Constructor for bean-style configuration. */ public DriverManagerDataSource() { } /** * Create a new DriverManagerDataSource with the given standard * DriverManager parameters. * * @param driverClassName the JDBC driver class name * @param url the JDBC URL to use for accessing the DriverManager * @param username the JDBC username to use for accessing the DriverManager * @param password the JDBC password to use for accessing the DriverManager * @param autoCommit the default autoCommit value that will be set to created connections * @see java.sql.DriverManager#getConnection(String, String, String) */ public DriverManagerDataSource(String driverClassName, String url, String username, String password, boolean autoCommit) { setDriverClassName(driverClassName); setUrl(url); setUsername(username); setPassword(password); setAutoCommit(autoCommit); } /** * Create a new DriverManagerDataSource with the given standard * DriverManager parameters. * <p/> * Note, the autoCommit will default to <code>false</code>. * * @param url the JDBC URL to use for accessing the DriverManager * @param username the JDBC username to use for accessing the DriverManager * @param password the JDBC password to use for accessing the DriverManager * @see java.sql.DriverManager#getConnection(String, String, String) */ public DriverManagerDataSource(String url, String username, String password) { setUrl(url); setUsername(username); setPassword(password); } /** * Create a new DriverManagerDataSource with the given JDBC URL, not * specifying a username or password for JDBC access. * * @param url the JDBC URL to use for accessing the DriverManager * @see java.sql.DriverManager#getConnection(String) */ public DriverManagerDataSource(String url) { setUrl(url); } /** * Set the JDBC driver class name. This driver will get initialized on * startup, registering itself with the JDK's DriverManager. * <p/> * Alternatively, consider initializing the JDBC driver yourself before * instantiating this DataSource. * * @see Class#forName(String) * @see java.sql.DriverManager#registerDriver(java.sql.Driver) */ public void setDriverClassName(String driverClassName) { this.driverClassName = driverClassName; try { Class.forName(this.driverClassName, true, Thread.currentThread().getContextClassLoader()); } catch (ClassNotFoundException ex) { throw new IllegalArgumentException("Could not load JDBC driver class [" + this.driverClassName + "]"); } } /** * Return the JDBC driver class name, if any. */ public String getDriverClassName() { return driverClassName; } /** * Set the JDBC URL to use for accessing the DriverManager. * * @see java.sql.DriverManager#getConnection(String, String, String) */ public void setUrl(String url) { this.url = url; } /** * Return the JDBC URL to use for accessing the DriverManager. */ public String getUrl() { return url; } /** * Set the JDBC username to use for accessing the DriverManager. * * @see java.sql.DriverManager#getConnection(String, String, String) */ public void setUsername(String username) { this.username = username; } /** * Return the JDBC username to use for accessing the DriverManager. */ public String getUsername() { return username; } /** * Set the JDBC password to use for accessing the DriverManager. * * @see java.sql.DriverManager#getConnection(String, String, String) */ public void setPassword(String password) { this.password = password; } /** * Return the JDBC password to use for accessing the DriverManager. */ public String getPassword() { return password; } /** * Returns the auto commit setting that a connection will be created */ public boolean getAutoCommit() { return this.autoCommit; } /** * Sets the auto commit setting that a connection will be created */ public void setAutoCommit(boolean autoCommit) { this.autoCommit = autoCommit; } /** * This implementation delegates to * <code>getConnectionFromDriverManager</code>, using the default * username and password of this DataSource. * * @see #getConnectionFromDriverManager() */ public Connection getConnection() throws SQLException { return getConnectionFromDriverManager(); } /** * This implementation delegates to * <code>getConnectionFromDriverManager</code>, using the given username * and password. * * @see #getConnectionFromDriverManager(String, String, String) */ public Connection getConnection(String username, String password) throws SQLException { return getConnectionFromDriverManager(getUrl(), username, password); } /** * Get a Connection from the DriverManager, using the default username and * password of this DataSource. * * @see #getConnectionFromDriverManager(String, String, String) */ protected Connection getConnectionFromDriverManager() throws SQLException { return getConnectionFromDriverManager(getUrl(), getUsername(), getPassword()); } /** * Getting a connection using the nasty static from DriverManager is * extracted into a protected method to allow for easy unit testing. * <p/> * Note, that it sets the auto commit to false * * @see java.sql.DriverManager#getConnection(String, String, String) */ protected Connection getConnectionFromDriverManager(String url, String username, String password) throws SQLException { Connection conn = DriverManager.getConnection(url, username, password); if (conn.getAutoCommit() != autoCommit) { conn.setAutoCommit(autoCommit); } return conn; } }