I've noticed that I can load a config parameter into a bean using something like this in application-context.xml:
<beans:bean id="foo" class="com.foo.FooBean">
<beans:property name="foo" value="${foo}" />
</beans:bean>
What about if I want to access the foo value in a Controller without instantiating a bean? Is there a way to do that?