com.greenhat.jdbc.ds.DataSourceFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greenhat Show documentation
Show all versions of greenhat Show documentation
Why told green-hat,because i have one~
package com.greenhat.jdbc.ds;
import javax.sql.DataSource;
public interface DataSourceFactory {
/**
* 获取数据源
* @return 数据源
*/
DataSource getDataSource();
}