org.riotfamily.common.beans.config |
Classes to configure bean factories.
|
Java Source File Name | Type | Comment |
HighestPrecedenceFactoryBean.java | Class | FactoryBean that looks for all beans of a certain type and returns the one
with the
Ordered.HIGHEST_PRECEDENCE highest precedence . |
PlaceholderWithDefaultConfigurer.java | Class | PropertyPlaceholderConfigurer that allows to define inline default values. |
PropertiesPlaceholderConfigurer.java | Class | PropertyPlaceholderConfigurer that accepts wildcards to populate properties
that expect a java.util.Properties value.
Example:
<bean class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">
<property name="freemarkerSettings" ref="${freemarker.*}" />
</bean>
The configurer will look for all properties start start with
'freemarker. '. |