> Implemented (except for "constructor" and autodetect values).
>
> Does this mean that I can not turn it off for constructors and autodetect?

No, it means we didn't implement those two "types" of autowiring. It's
pretty much "byName" only (keep in mind that autowiring for
constructor-args *is* supported, but only byName).


>
> for example
>
> <bean id="sqlDsn" class="com.amkor.global.dao.dsn" singleton="true"
> lazy-init="false" autowire="no">
>         <constructor-arg
> name="dsn"><value>misc_billing_sql</value></constructor-arg>
> </bean>
>
> But coldspring seem to still be attempting to autowire this thing.
>

I'm confused... do you mean that ColdSpring is calling other setters
on com.amkor.global.dao.dsn that match the signatures of other
<bean/>s in the factory? Or do you mean that you're trying to prevent
it from passing in the dsn to the constructor?

Let me know, but regardless, I wouldn't be surprised if there was some
autowiring funkiness. It's been thru a few iterations, but it really
needs to be cleaned up once more.

-Dave

Reply via email to