(1)字符串导入大小写敏感,是否十六进制修复

(2)http 高级导入,ftp内容关键字导入提交
(3)加入16进制大小写一定不敏感的验证提示
(4)“others”自定义域不允许导入
This commit is contained in:
wangxin
2018-10-31 17:00:40 +08:00
parent 9c41c4e848
commit 1f39824324
6 changed files with 44 additions and 13 deletions

View File

@@ -172,6 +172,20 @@ public class WebsiteCfgService extends CrudService<WebsiteCfgDao,CfgIndexInfo> {
websiteCfgDao.saveHttpBodyCfg(_cfg);
}
}
public void saveHttpReqHeadCfg(List<ComplexkeywordCfg> cfgs) {
for(ComplexkeywordCfg cfg:cfgs){
HttpReqHeadCfg _cfg=new HttpReqHeadCfg();
BeanUtils.copyProperties(cfg,_cfg);
websiteCfgDao.saveHttpReqHdrCfg(_cfg);
}
}
public void saveHttpResHeadCfg(List<ComplexkeywordCfg> cfgs) {
for(ComplexkeywordCfg cfg:cfgs){
HttpResHeadCfg _cfg=new HttpResHeadCfg();
BeanUtils.copyProperties(cfg,_cfg);
websiteCfgDao.saveHttpResHdrCfg(_cfg);
}
}
public void saveHttpCfg(CfgIndexInfo entity){
//设置区域运营商信息
setAreaEffectiveIds(entity);