(1)字符串导入大小写敏感,是否十六进制修复
(2)http 高级导入,ftp内容关键字导入提交 (3)加入16进制大小写一定不敏感的验证提示 (4)“others”自定义域不允许导入
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user