Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 5.1.0.5
-
Fix Version/s: 5.2.0
-
Component/s: tapestry-spring
-
Labels:None
Description
Springs allows you to externalize property values from a bean definition into a property file. It would be nice if the values of the property placeholders could be read from symbol values. An example:
<bean id="serviceStrategy" class="${custom.strategy.class}"/>
public static void contributeApplicationDefaults(MappedConfiguration<String, String> configuration) {
configuration.add("custom.strategy.class", "com.foo.DefaultStrategy");
}