The spring.jar is located in the EAR in APP-INF/lib.
The bean is declared in the application context configuration file like so:
Code:
<bean id="getHubClliListVerifier"
class="com.level3.gets.diagnostics.webservices.verifiers.GetHubClliListVerifier"/>
The class is not being found when Spring tries to initialize the bean, even though the class is located in the EAR:
getsEjbs/com/level3/gets/diagnostics/webservices/verifiers/GetHubClliListVerifier.class
It seems that it should work (especially since it *does* work when deployed as a separate Spring MVC web application WAR, not part of an EAR), but the class still isn't found.
--James