@Bean
 public static PropertyPlaceholderConfigurer securityPropertyPlaceholderConfigurer() {
   PropertyPlaceholderConfigurer propertyPlaceholderConfigurer =
       new PropertyPlaceholderConfigurer();
   propertyPlaceholderConfigurer.setLocation(
       new ClassPathResource("application-security.properties"));
   propertyPlaceholderConfigurer.setIgnoreUnresolvablePlaceholders(true);
   return propertyPlaceholderConfigurer;
 }