OK one more potential issue that I thought I'd bring up. I've got this in my XML:

    <bean id="userDSN" factory-bean="DSNFactory" factory-method="newDSN">
        <constructor-arg name="parameters">
            <map>
                <entry key="configManager">
                    <ref bean="configManager" />
                </entry>
            </map>
        </constructor-arg>
    </bean>


Which should, if I understand it, pass a structure named parameters with key called "configManager" and the value should be a reference to the already created bean named "configManager". However, when I run this, I get a struct named "parameters" with a key called "configManager", but the value is an object of type " coldspring.beans.BeanReference", not of type "configManager". I'll look into it further and post again if I come up with any ideas/answers. Thanks.

Reply via email to