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

org.apache.commons.dbcp.BasicDataSourceFactory Maven / Gradle / Ivy

There is a newer version: 0.2.9
Show newest version
package org.apache.commons.dbcp;

import java.util.Properties;

import com.alibaba.druid.pool.DruidDataSourceFactory;

public class BasicDataSourceFactory extends DruidDataSourceFactory {

    public static BasicDataSource createDataSource(Properties properties) throws Exception {
        BasicDataSource dataSource = new BasicDataSource();
        config(dataSource, properties);
        return dataSource;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy