You are not reading the properties file correctly. The propertySource should pass the parameter as: file:appclient.properties or classpath:appclient.properties. Change the annotation to:
@PropertySource(value={"classpath:appclient.properties"})
However I don’t know what your PropertiesConfig file contains, as you’re importing that also. Ideally the @PropertySource annotation should have been kept there.