//property value sought first in system property
propertySources.add(new SystemPropertiesPropertySource());
//then in impala properties file
propertySources.add(new StaticPropertiesPropertySource(resourceProperties));
PrefixedCompositePropertySource propertySource = new PrefixedCompositePropertySource("impala.", propertySources);
PropertySourceHolder.getInstance().setPropertySource(propertySource);