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

uk.co.mruoc.file.property.FileSystemPropertyFileLoader Maven / Gradle / Ivy

Go to download

Code library to easily load files and file from the classpath or file system file

The newest version!
package uk.co.mruoc.file.property;

import java.util.Properties;
import lombok.extern.slf4j.Slf4j;
import uk.co.mruoc.file.FileSystemInputStreamLoader;

@Slf4j
public class FileSystemPropertyFileLoader extends DefaultPropertyLoader {

    public FileSystemPropertyFileLoader() {
        super(new FileSystemInputStreamLoader());
    }

    @Override
    public Properties loadProperties(String path) {
        log.debug("loading file from file system path {}", path);
        return super.loadProperties(path);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy