提交 04da126a authored 作者:  狄熙卜's avatar 狄熙卜

注解配置支持reload

上级 c7164297
...@@ -151,6 +151,9 @@ public class DbEncryptXmlConfig { ...@@ -151,6 +151,9 @@ public class DbEncryptXmlConfig {
setInterfaceSm2DecodeKey(null); setInterfaceSm2DecodeKey(null);
setInterfaceSm2EncodeKey(null); setInterfaceSm2EncodeKey(null);
setBaseConfigOptions(null); setBaseConfigOptions(null);
setAnnoGroupNames(null);
setAnnoEntityPackage(null);
setAnnoSqlPackage(null);
} }
public String getInterfaceSm2DecodeKey(){ public String getInterfaceSm2DecodeKey(){
if(!StringUtils.isBlank(this.interfaceSm2DecodeKey)){ if(!StringUtils.isBlank(this.interfaceSm2DecodeKey)){
...@@ -560,6 +563,7 @@ public class DbEncryptXmlConfig { ...@@ -560,6 +563,7 @@ public class DbEncryptXmlConfig {
} }
public void addAnnotationConfigFileds() { public void addAnnotationConfigFileds() {
long begin = System.currentTimeMillis();
//获取注解加解密总开关 //获取注解加解密总开关
if(!isAnnoEnable()){ if(!isAnnoEnable()){
return; return;
...@@ -684,6 +688,8 @@ public class DbEncryptXmlConfig { ...@@ -684,6 +688,8 @@ public class DbEncryptXmlConfig {
} }
sqlSingleDecryptFileds.addAll(annoSqlSingleDecryptFileds); sqlSingleDecryptFileds.addAll(annoSqlSingleDecryptFileds);
} }
long end = System.currentTimeMillis();
LOGGER.error("anno scan used time:"+(end-begin));
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论