Re: Injecting services into application scope ASO

2007-03-16 Thread Borut Bolčina
Half way there... Using Hiveutils I managed to write this, but in the Manager ASO constructor the config is null. The setter for the config is never called. The Manager is instantiated by a Border component when method ping() is called. I can use spring provided config in Border component

Re: Injecting services into application scope ASO

2007-03-16 Thread Barry Books
I think what you need is an initialize-method. setConfig cannot be called before the Manager constructor. See http://hivemind.apache.org/hivemind1/hivemind/BuilderFactory.html - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Injecting services into application scope ASO

2007-03-15 Thread Borut Bolčina
Hello, can someone provide some code hints to Hivemind and Spring newb - that would be me - on how to inject 1. Hivemind service into application scope ASO 2. Spring service into application scope ASO I want to cache some long term objects in the global ASO, but want (if it is at all