All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jn.sqlhelper.datasource.driver.AbstractDriverBasedDataSource Maven / Gradle / Ivy

There is a newer version: 3.6.16
Show newest version
/*
 * Copyright 2020 the original author or authors.
 *
 * Licensed under the Apache, 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.gnu.org/licenses/lgpl-2.0.html
 *
 * 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 com.jn.sqlhelper.datasource.driver;


import com.jn.langx.util.Preconditions;
import com.jn.sqlhelper.datasource.AbstractDataSource;

import java.sql.Connection;
import java.sql.SQLException;
import java.util.Properties;

/**
 * Abstract base class for JDBC {@link javax.sql.DataSource} implementations
 * that operate on a JDBC {@link java.sql.Driver}.
 *
 * @see SimpleDriverDataSource
 * @see DriverManagerDataSource
 * @since 3.4.0
 */
public abstract class AbstractDriverBasedDataSource extends AbstractDataSource {

    private String url;

    private String username;

    private String password;

    private String catalog;

    private String schema;

    private Properties connectionProperties;


    /**
     * Set the JDBC URL to use for connecting through the Driver.
     *
     * @see java.sql.Driver#connect(String, java.util.Properties)
     */
    public void setUrl(String url) {
        Preconditions.checkNotEmpty(url, "Property 'url' must not be empty");
        this.url = url.trim();
    }

    /**
     * Return the JDBC URL to use for connecting through the Driver.
     */
    public String getUrl() {
        return this.url;
    }

    /**
     * Set the JDBC username to use for connecting through the Driver.
     *
     * @see java.sql.Driver#connect(String, java.util.Properties)
     */
    public void setUsername(String username) {
        this.username = username;
    }

    /**
     * Return the JDBC username to use for connecting through the Driver.
     */
    public String getUsername() {
        return this.username;
    }

    /**
     * Set the JDBC password to use for connecting through the Driver.
     *
     * @see java.sql.Driver#connect(String, java.util.Properties)
     */
    public void setPassword(String password) {
        this.password = password;
    }

    /**
     * Return the JDBC password to use for connecting through the Driver.
     */
    public String getPassword() {
        return this.password;
    }

    /**
     * Specify a database catalog to be applied to each Connection.
     *
     * @see Connection#setCatalog
     * @since 2.3.0
     */
    public void setCatalog(String catalog) {
        this.catalog = catalog;
    }

    /**
     * Return the database catalog to be applied to each Connection, if any.
     *
     * @since 2.3.0
     */
    public String getCatalog() {
        return this.catalog;
    }

    /**
     * Specify a database schema to be applied to each Connection.
     *
     * @since 2.3.0
     */
    public void setSchema(String schema) {
        this.schema = schema;
    }

    /**
     * Return the database schema to be applied to each Connection, if any.
     */
    public String getSchema() {
        return this.schema;
    }

    /**
     * Specify arbitrary connection properties as key/value pairs,
     * to be passed to the Driver.
     * 

Can also contain "user" and "password" properties. However, * any "username" and "password" bean properties specified on this * DataSource will override the corresponding connection properties. * * @see java.sql.Driver#connect(String, java.util.Properties) */ public void setConnectionProperties(Properties connectionProperties) { this.connectionProperties = connectionProperties; } /** * Return the connection properties to be passed to the Driver, if any. */ public Properties getConnectionProperties() { return this.connectionProperties; } /** * This implementation delegates to {@code getConnectionFromDriver}, * using the default username and password of this DataSource. * * @see #getConnectionFromDriver(String, String) * @see #setUsername * @see #setPassword */ @Override public Connection getConnection() throws SQLException { return getConnectionFromDriver(getUsername(), getPassword()); } /** * This implementation delegates to {@code getConnectionFromDriver}, * using the given username and password. * * @see #getConnectionFromDriver(String, String) */ @Override public Connection getConnection(String username, String password) throws SQLException { return getConnectionFromDriver(username, password); } /** * Build properties for the Driver, including the given username and password (if any), * and obtain a corresponding Connection. * * @param username the name of the user * @param password the password to use * @return the obtained Connection * @throws SQLException in case of failure * @see java.sql.Driver#connect(String, java.util.Properties) */ protected Connection getConnectionFromDriver(String username, String password) throws SQLException { Properties mergedProps = new Properties(); Properties connProps = getConnectionProperties(); if (connProps != null) { mergedProps.putAll(connProps); } if (username != null) { mergedProps.setProperty("user", username); } if (password != null) { mergedProps.setProperty("password", password); } Connection con = getConnectionFromDriver(mergedProps); if (this.catalog != null) { con.setCatalog(this.catalog); } if (this.schema != null) { // con.setSchema(this.schema); } return con; } /** * Obtain a Connection using the given properties. *

Template method to be implemented by subclasses. * * @param props the merged connection properties * @return the obtained Connection * @throws SQLException in case of failure */ protected abstract Connection getConnectionFromDriver(Properties props) throws SQLException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy