for (Map.Entry<String, String> entry : srcMap.entrySet()) {
RequestKey key = new RequestKey(entry.getKey(), null);
//使用SecurityConfig构造List<ConfigAttribute>
SecurityConfig sc = new SecurityConfig(entry.getValue());
List<ConfigAttribute> list = sc.createList(sc.getAttribute());
distMap.put(key, list);
}
return distMap;
}