适配sql配置文件,未完成

This commit is contained in:
wind 2023-04-10 22:56:23 +08:00
parent 2308dca124
commit 5053c161d1
4 changed files with 7 additions and 6 deletions

View File

@ -52,4 +52,9 @@ public class SupplierConfig {
protected JdCloudConfig jdCloudConfig(){ protected JdCloudConfig jdCloudConfig(){
return SupplierFactory.getJdCloudConfig(); return SupplierFactory.getJdCloudConfig();
} }
/** 为的是延后执行*/
protected void init(){
}
} }

View File

@ -9,6 +9,8 @@ package org.dromara.sms.comm.enumerate;
public enum ConfigType { public enum ConfigType {
/** 配置文件*/ /** 配置文件*/
CONFIG_FILE("configFile"), CONFIG_FILE("configFile"),
/** setting配置文件*/
SETTINGS_FILE("settingsFile"),
/** 数据库配置*/ /** 数据库配置*/
SQL_CONFIG("sqlConfig"), SQL_CONFIG("sqlConfig"),

View File

@ -19,6 +19,4 @@ public class HuaweiConfig {
private String statusCallBack; private String statusCallBack;
/** APP接入地址*/ /** APP接入地址*/
private String url; private String url;
/** 是否打印http请求日志*/
private Boolean httpLog = false;
} }

View File

@ -24,8 +24,4 @@ public class YunpianConfig {
*/ */
private String templateName; private String templateName;
/**
* 是否打印http请求日志
*/
private Boolean httpLog = false;
} }