With Spring in xml context we can simple load properties like this:
<context:property-placeholder location:"classpath*:app.properties"/>
Is there any chance to configure same properties inside @Configuration bean (~ from java code) without boilerplate?
Thanks!