We have a web application that uses Spring 3. And we have to migrate it from Tomcat 7 to Weblogic 10.
The structure of this application is:
- a core module, which contains all the application logic. This module is packaged as a jar.
- a web module, which defines all the web services. This module includes the previous one as a dependency and uses its beans by including the core-module context in the 'contextConfigLocation' param.
I'm using maven and this is how the dependency is defined in the web-module:
<dependency>
<groupId>com.example</groupId>
<artifactId>module-core</artifactId>
<version>${project.version}</version>
<classifier>${environment}</classifier>
</dependency>
The application worked fine in tomcat, but it can't be deploied in Weblogic since Spring can't create any bean that depends on beans in core-module.jar. The error is always the same for all the beans comming from core-module:
org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'xxxBean' is defined
'xxxBean' is any of the bean defined in core-module.jar. If I delete the ref to avoid the problem with that bean, the next referenced bean will provoke the error again. I mean Spring finds all the beans defined in web-module itself, but none defined in core-module.
In the trace of the error, I can see that weblogic is using this:
com.oracle.weblogic.wsee.wrapper.org.springframework.web.context.ContextLoaderListener.contextInitialized
so the problem may be related to the wrapper that Weblogic introduces for spring applications.
Any idea about the configuration that can fix this problem? Thanks!