I have:
<bean id="applicationProperties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:config/common.properties</value>
<value>classpath:config/env/${env}/environment.properties</value>
</list>
</property>
<property name="ignoreResourceNotFound" value="true" />
<property name="nullValue" value="@null" />
</bean>
What I'd like to do is a System.out.print all the key/value pairs of properties available when I'm in a *.java file.