我有一个简单的Spring MVC应用程序,它从LDAP服务器中查找一些用户详细信息,并使用JSP打印出一个简单的HTML页面。该应用程序在Tomcat 6上运行正常。它使用Spring LDAP 1.3.1和LDAPTemplate进行LDAP查找。
但是,当我将此应用程序WAR部署到Websphere 7时,应用程序无法运行 - Websphere会返回500内部服务器错误。查看Websphere的日志文件,我看到了
[14/12/10 14:50:09:169 GMT] 00000022 DispatcherSer E org.springframework.web.servlet.FrameworkServlet initServletBean Context initialization failed
org.springframework.beans.factory.CannotLoadBeanClassException: Error loading class [org.springframework.ldap.core.support.LdapContextSource] for bean with name 'contextSource' defined in ServletContext resource [/WEB-INF/spring-servlet.xml]: problem with class file or dependent class; nested exception is java.lang.NoClassDefFoundError: org.springframework.beans.factory.InitializingBean
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1253)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.predictBeanType(AbstractAutowireCapableBeanFactory.java:576)
at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:1319)
at org.springframework.beans.factory.support.AbstractBeanFactory.isFactoryBean(AbstractBeanFactory.java:885)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:562)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:895)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:425)
我的web-inf \ lib目录包含所有JAR文件,包括org.springframework.beans-3.0.5.RELEASE.jar
,其中包含InitializingBean
。因此,我不确定为什么Websphere报告该类缺失。
我的web-inf \ lib的内容:
aopalliance.jar
com.springsource.org.apache.commons.logging-1.1.1.jar
com.springsource.org.apache.log4j-1.2.15.jar
commons-lang-2.5.jar
commons-logging-1.1.1.jar
commons-pool-1.5.4.jar
jstl-api-1.2.jar
jstl-impl-1.2.jar
ldapbp-1.0.jar
org.springframework.aop-3.0.5.RELEASE.jar
org.springframework.asm-3.0.5.RELEASE.jar
org.springframework.beans-3.0.5.RELEASE.jar
org.springframework.context-3.0.5.RELEASE.jar
org.springframework.core-3.0.5.RELEASE.jar
org.springframework.expression-3.0.5.RELEASE.jar
org.springframework.jdbc-3.0.5.RELEASE.jar
org.springframework.oxm-3.0.5.RELEASE.jar
org.springframework.transaction-3.0.5.RELEASE.jar
org.springframework.web-3.0.5.RELEASE.jar
org.springframework.web.servlet-3.0.5.RELEASE.jar
spring-ldap-1.3.1.RELEASE-all.jar
这里是Websphere加载有问题的contextSource
bean的定义(用户名/密码有效并且可以与Tomcat一起使用):
<bean id="contextSource" class="org.springframework.ldap.core.support.LdapContextSource">
<property name="url" value="ldaps://moo.example.com:1300/" />
<property name="userDn" value="CN=foo,OU=baz,DC=bar,DC=blat,DC=org" />
<property name="password" value="*******" />
</bean>
如果有人能指出为什么这不适用于Websphere,我会很高兴。我对Websphere中的类加载规则不太了解,并对此有任何建议。
答案 0 :(得分:3)
这是一个棘手的常见例外。请记住,NoClassDefFoundError
并不意味着找不到课程,而是意味着:
NoClassDefFoundError:给定的类 可以找到,但有些事情发生了 初始化时错误(一个 它实现的接口不可能 发现,出了问题 静态初始化器等。)。
来自here。
答案 1 :(得分:3)
启用“类加载”跟踪。这将告诉您加载了哪些类以及从哪个Jar。正如Sajan所提到的那样,类路径中存在重复的jar并且你期望的类加载器没有加载这个类(并且父类加载器可能已经加载了一个类)。
NoClassDefFoundError(NCDFE)确实意味着找不到它正在寻找的类。静态初始化中的错误将明确地变成“java.lang.ExceptionInInitializerError”(EIIE) “
NCDFE和EIIE均延伸至Linkage错误。
通常,通过打开服务器的类加载可以轻松解决所有这些错误。还可以使用管理控制台中提供的Class Loader Viewer来帮助您进行故障排除。
HTH Manglu
答案 2 :(得分:1)
请检查您在任何其他可能的jar中没有相同的课程
答案 3 :(得分:1)
请检查您是否在pom.xml文件中添加了依赖项。