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

com.zhuang.data.mybatis.datasource.Dbcp2DataSourceFactory Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package com.zhuang.data.mybatis.datasource;

import java.util.Properties;

import javax.sql.DataSource;

import org.apache.commons.dbcp2.BasicDataSource;
import org.apache.ibatis.datasource.DataSourceFactory;

public class Dbcp2DataSourceFactory implements DataSourceFactory {

	private BasicDataSource dataSource;

	public Dbcp2DataSourceFactory() {
		dataSource = new BasicDataSource();
	}

	public void setProperties(Properties props) {
		dataSource.setDriverClassName(props.getProperty("driver"));
		dataSource.setUrl(props.getProperty("url"));
		dataSource.setUsername(props.getProperty("username"));
		dataSource.setPassword(props.getProperty("password"));
	}

	public DataSource getDataSource() {
		return dataSource;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy