ConfigurableEnvironment转Map

public final class EnvironmentUtils {

    private EnvironmentUtils() {
        
    }

    public static Map extractProperties(ConfigurableEnvironment environment) {
        return Collections.unmodifiableMap(doExtraProperties(environment));
    }

    private static Map doExtraProperties(ConfigurableEnvironment environment) {
        Map properties = new LinkedHashMap<>();
        Map> map = doGetPropertySources(environment);
        for (PropertySource source : map.values()) {
            if (source instanceof EnumerablePropertySource) {
                EnumerablePropertySource propertySource = (EnumerablePropertySource) source;
                String[] propertyNames = propertySource.getPropertyNames();
                if (ObjectUtils.isEmpty(propertyNames)) {
                    continue;
                }
                for (String propertyName : propertyNames) {
                    if (!properties.containsKey(propertyName)) {
                        properties.put(propertyName, propertySource.getProperty(propertyName));
                    }
                }
            }
        }

        return properties;
    }

    private static Map> doGetPropertySources(ConfigurableEnvironment environment) {
        Map> map = new LinkedHashMap>();
        MutablePropertySources sources = environment.getPropertySources();
        for (PropertySource source : sources) {
            extract("", map, source);
        }
        return map;
    }

    private static void extract(String root, Map> map, PropertySource source) {
        if (source instanceof CompositePropertySource) {
            for (PropertySource nest : ((CompositePropertySource) source)
                    .getPropertySources()) {
                extract(source.getName() + ":", map, nest);
            }
        } else {
            map.put(root + source.getName(), source);
        }
    }
}

 

你可能感兴趣的:(java)