Hi,
I'm having a little conversation with myself over on the reactor list
http://groups.google.com/group/reactor-users/browse_thread/thread/d4235d5da06c9740
It boils down to this, do i
1) create setter/getters in my reactor objects for beans that i need
to use in them and then use AOP to intercept the createWhatever()
methods and autowire the objects before returning them. This doesn't
couple my reactor objects to coldspring, although they would still
need to be managed in some way to get the dependencies injected before
they were usable
2) create a dependency on the beanfactory within my reactor objects by
using _getBean() everywhere. This is simpler, and may well perform
better although i have not tested that.
I'm using this with MG:G so cs isn't likely to disappear, but all this
plumbing is happening in an application level parent bean factory.
Anyone care to offer an argument in favor of either option?
Cheers, Chris