i have an application where i have to use spring to load bean based on some business conditions inside a osgi bundle . this beans are not meant for export and are used for caluclation inisde my bundle . basically i hav actual service component which is exported and it has to use spring bean internally .

  1. But when i use Spring DM the extender load aplication context in a seperate thread and how to acess the context file inside my bundle
  2. how to make sure extender thread finshes aplications context laoding so that i can use it in my bundle
  3. i dont want to export aplication context a service as springdm dose it as its only used inside my bundle for internal purpse

is there any way to do this ?

link|improve this question

67% accept rate
Your question might get better attention if you add a language tag to it (i.e. Java). You also might want to clean up your spelling, grammar and capitalization; your question will be taken more seriously. – Robert Harvey Nov 7 '11 at 17:22
feedback

1 Answer

up vote 1 down vote accepted

You don't need Spring DM for what you are trying to accomplish.

It sounds like what you want to do is actually provide access to your context inside of your bundle and have some class do lookups via ctx.getBean(). If this is the case, just create the context in your bundle manually like you would if you were not in OSGi and make the calls. No Spring DM involved at all.

The one issue here is that you have to extend ClassPathXmlApplicationContext to provide the bundles classloader, as it will use the thread context classloader otherwise.

ApplicationContext ctx = new ClassPathXmlApplicationContext(myCtxPath)
{
    protected void initBeanDefinitionReader(XmlBeanDefinitionReader reader)
    {
        super.initBeanDefinitionReader(reader);
        reader.setValidationMode(XmlBeanDefinitionReader.VALIDATION_NONE);
        reader.setBeanClassLoader(getClassLoader());
    }
}
link|improve this answer
thanks for yor reply . it was helpful – Questionevrything Nov 30 '11 at 17:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.