datasource
parent
fd0375975a
commit
072af7faae
@ -1,39 +0,0 @@
|
||||
package com.anjiplus.template.gaea.business.modules.dataSource.pool.api;
|
||||
|
||||
/**
|
||||
* 配置接口
|
||||
* @author binbin.hou
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public interface IConfig {
|
||||
|
||||
/**
|
||||
* 设置驱动类
|
||||
*
|
||||
* @param driverClass 驱动类
|
||||
* @since 1.0.0
|
||||
*/
|
||||
void setDriverClass(final String driverClass);
|
||||
|
||||
/**
|
||||
* jdbc url
|
||||
* @param jdbcUrl url
|
||||
* @since 1.0.0
|
||||
*/
|
||||
void setJdbcUrl(final String jdbcUrl);
|
||||
|
||||
/**
|
||||
* 设置用户信息
|
||||
* @param user 用户信息
|
||||
* @since 1.0.0
|
||||
*/
|
||||
void setUser(final String user);
|
||||
|
||||
/**
|
||||
* 设置密码
|
||||
* @param password 密码
|
||||
* @since 1.0.0
|
||||
*/
|
||||
void setPassword(final String password);
|
||||
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
package com.anjiplus.template.gaea.business.modules.dataSource.pool.api;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
|
||||
/**
|
||||
* 配置接口
|
||||
* @author binbin.hou
|
||||
* @since 1.0.0
|
||||
*/
|
||||
public interface IDataSourceConfig extends IConfig, DataSource {
|
||||
|
||||
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
package com.anjiplus.template.gaea.business.modules.dataSource.pool.api;
|
||||
|
||||
/**
|
||||
* 生命周期管理
|
||||
* @since 1.1.0
|
||||
*/
|
||||
public interface ILifeCycle {
|
||||
|
||||
/**
|
||||
* 生命的初始化
|
||||
* @since 1.1.0
|
||||
*/
|
||||
void init();
|
||||
|
||||
/**
|
||||
* 生命的销毁
|
||||
* @since 1.1.0
|
||||
*/
|
||||
void destroy();
|
||||
|
||||
}
|
Loading…
Reference in New Issue