public static PropertySourcesPlaceholderConfigurer properties()

in customizations/src/main/java/com/epam/gmp/config/custom/CustomGmpConfig.java [46:54]


    public static PropertySourcesPlaceholderConfigurer properties() {
        PropertySourcesPlaceholderConfigurer pspc = new PropertySourcesPlaceholderConfigurer();
        Resource[] resources;
        resources = new Resource[]{new ClassPathResource(GMP_GLOBAL_PROPERTIES)};
        pspc.setLocations(resources);
        pspc.setIgnoreUnresolvablePlaceholders(true);
        pspc.setIgnoreResourceNotFound(true);
        return pspc;
    }