vote up 0 vote down star
1

Hi,

I'm using Spring's FileSystemXmlApplicationContext in Osgi activator. Unfortunately, it doesn't load any bean from the provided XML files. I'm sure that it finds the xml configuration files, because I was testing with incorrect name of my xml configuration file, and it threw an FileNotFoundException.

Here is a snippet from my code:

    FileSystemXmlApplicationContext appContext1=new FileSystemXmlApplicationContext("classpath*:app-container-config.xml");
    System.out.println("output for file: app-container-config.xml");
    System.out.println(appContext1.getBeanDefinitionCount());
    String[] names=appContext1.getBeanDefinitionNames();
    for (int i = 0; i < names.length; i++) {
        String string = names[i];
        System.out.println(string);
    }

This code returns this:

output for file: app-container-config.xml
0

even thought I have more than 0 beans in my app-container-config.xml file.

Thanks in advance

flag
Hmm... where is code of appContext1 creation? And did you tried to enable DEBUG log level for spring? – gedevan Sep 25 at 15:56
1  
Can you use the Spring dm libraries instead of just the core Spring library? You'll run into a whole bunch of OSGi-related issues trying to use core Spring. You don't provide enough info on your current problem for us to work with. Logging output, location of the Spring XML file, which OSGi runtime, ... – stevendick Sep 26 at 10:56

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.