Folks, I was wondering if this is available in recent version of ColdSpring? If not is there a plan to add this feature.
i.e. I know in spring you can do this <bean id="orderService" class="com.OrderService"> <property name="companyName" value="XYZ"/> <constructor-arg ref="orderDAO"/> </bean> instead of <bean id="orderService" class="com.OrderService"> <property name="companyName"> <value>XYZ</value> </property> <constructor-arg> <ref bean="orderDAO"> </constructor-arg> </bean> Thanks -- Qasim Rasheed
