Hi all,
I have a concrete class MyClass defined in my spring config file. Something like:
The method itself is defined by an inherited abstract class.Code:<bean id="myBean" class="MyClass" />
Now when BeanUtils tries to invoke this method it tries to instantiate the abstract class instead of MyClass and throws of course an InstantiationException.
How do I tell Spring to use the class MyClass as defined in my config?
Thanks Tai


Reply With Quote