0

我有一个简单的 Web 应用程序(一个 jsp 和一个 servlet)文件,我已将其复制到 jboss-4.0.2/server/default/deploy 文件夹中,并且它已成功热部署,因为我可以访问 jsp 页面。但是,当我调用 servlet 时,我得到一个 java.lan.NoClassDefFoundError。

我怀疑war中WEB-INF/lib目录下的jars没有被拾取。

我的战争结构是:

META-INF  
  -->  MANIFEST.MF  
WEB-INF  
  -->  classes  
          --> ...*.classes  
  -->  lib  
          --> jcommon-1.0.16.jar  
              jfreechart-1.0.13.jar  
              servlet-api.jar  
index.jsp  

其他人在 JBoss 4 中有类加载问题吗?

非常感谢。

4

1 回答 1

1

At the very least, you should not have the servlet-api.jar file in there. Those classes should all be provided by the Servlet container (in your case, JBoss).

于 2010-03-24T10:07:21.527 回答