All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.n2oapp.properties.reader.PatternResourcePropertySource Maven / Gradle / Ivy

There is a newer version: 7.28.1
Show newest version
package net.n2oapp.properties.reader;

import org.springframework.core.env.PropertiesPropertySource;

/**
 * Search resources by pattern
 */
public class PatternResourcePropertySource extends PropertiesPropertySource {

    protected PatternResourcePropertySource(String name, String locationPattern) {
        super(name, PropertiesReader.getPropertiesFromURI(locationPattern));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy