[jboss-user] [JBoss/Spring Integration] - ContextSingletonBeanFactoryLocator and classloaders

lucdew do-not-reply at jboss.com
Tue Aug 7 06:30:28 EDT 2007


Hi,

I have problems using SingletonBeanFactoryLocator and classloader issues.
Actually, 

My application is packaged like this:

myapp.ear
--> spring.jar
--> mysar.sar
--> myjar.jar

My sar performs initialization tasks and one of them is to initialize spring contexts with the following code:

anonymous wrote : 	BeanFactoryLocator  sbf = ContextSingletonBeanFactoryLocator.getInstance();
  | 		BeanFactoryReference bf = sbf.useBeanFactory("common.context"); 

The problems is that Spring the common.context bean is not found and i figured out why it's because Spring can not find the beanRefContext.xml file which holds the bean definition because it uses a wrong classloader 

I declared spring.jar and myjar.jar in application.xml as Java modules (ex: spring.jar)

In mysar.sar i displayed information of the current classloader and here's what i get:


11:58:54,765 INFO  [DeployerListenerService] Current classloader = org.jboss.mx.
  | loading.UnifiedClassLoader3 at 10d16b{ url=file:/D:/applications/jboss-4.0.
  | 5.GA/server/default/deploy/myapp.ear/ ,addedOrder=40}	



and if i execute the following code:

Enumeration<URL> resourcesEnum = this.getClass().getClassLoader().getResources("beanRefContext.xml");	



the classloader find the resource beanRefContext.xml which is packaged in myjar.jar. It works as expected.

The problem is Spring library executes almost the same code in the PathMatchingResourcePatternResolver class it executes:
Code:

Enumeration resourceUrls = getClassLoader().getResources(path);	


where path is "beanRefContext.xml"
and the getClassLoader() returned in debug mode has a path attribute of:


  | /D:/applications/jboss-4.0.5.GA/server/default/conf/	


and therefore is unable to see the beanRefContext.xml file packaged in my ear.

Note that i configured in my ear a loader repository :
Code:

  <loader-repository> 
  |       test.com:loader=myapp
  | </loader-repository>	
  | 


I don't understand why the classloader retrieved in Spring is the one associated with the universalrepository3 ? and not the HeirarchicalLoaderRepository3 of my ear???

I checked the CLASSPATH and my Jboss installation to see if there were Spring classes elsewhere and no the only Spring classes are in the spring.jar of myapp.ear.

Please i need help. 

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4071529#4071529

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4071529



More information about the jboss-user mailing list