How do I inject a class into an object? If the message signature was:
then spring would resolve it correctly from the following config:Code:public void setFooBar(Class class)
In my scenario the method signature is:Code:<property name="fooBar" value="com.foo.bar.Cow"/>
what would the corresponding configuration be?Code:public void setFooBar(Object obj)


Reply With Quote
