| 12345678910111213141516171819202122232425262728 |
- package jnpf.database.plugins;
- import jnpf.database.util.DataSourceUtil;
- /**
- * 动态生成数据源接口
- *
- * @author JNPF开发平台组
- * @copyright 引迈信息技术有限公司
- */
- public interface DynamicSourceGeneratorInterface {
- /**
- * 获取当前需要切换的数据源配置
- * @return
- */
- DataSourceUtil getDataSource();
- /**
- * 是否缓存链接
- * @return true: 不可用时重新获取, false: 每次都重新获取配置
- */
- default boolean cachedConnection(){
- return true;
- }
- }
|