java.lang.NoClassDefFoundError: javax.servlet.ServletInputStream 在 websphere 上部署时出错

发布于 2024-12-03 23:01:05 字数 316 浏览 2 评论 0原文

我已经使用 glassfish 作为我的服务器,使用 ninebeans 创建了一个球衣 Web 服务,一切正常,但我在尝试在 websphere 7 上安装相同的应用程序时遇到问题。

我收到此错误“错误 500 处理请求时发生错误:/ibm/console /upload.do 消息:java.lang.NoClassDefFoundError:javax.servlet.ServletInputStream”。

我什至尝试创建一个简单的 Web 应用程序并尝试在 websphere 上部署,同样,我遇到了同样的错误。

有人有想法吗?我非常需要你的帮助。提前致谢

I have created a jersey web service with neatbeans using glassfish as my server, everything works fine but i have issues trying to install the same app on websphere 7.

i get this error "Error 500 An error occurred while processing request: /ibm/console/upload.do Message: java.lang.NoClassDefFoundError: javax.servlet.ServletInputStream".

I even tried creating a simple web app and tried to deploy on websphere, again, i have the same error.

Anybody with ideas? I need your help so badly ya'll. Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

孤独岁月 2024-12-10 23:01:05

确保 WEB-INF/lib 中没有 servlet-api.jar。如果它在那里,它可能会干扰 websphere 中已经存在的类加载器的一个技巧

Make sure you don't have servlet-api.jar in your WEB-INF/lib. If its there it may interfere with the one already present in websphere a trick the classloader

玩套路吗 2024-12-10 23:01:05

我做了以下对我有用的步骤:

  1. 转到控制台中的服务器(在我的情况下是独立的,即没有 DMGR)
  2. 将类加载器策略更改为“多个”。

I did below steps which worked for me :

  1. Go to the server in console(which was stand - alone in my case i.e no DMGR)
  2. Change the class loader policy to "multiple".
不知所踪 2024-12-10 23:01:05

我想我回答这个问题还不算太晚。 HttpServlet 类可以在 j2ee.jar 中找到。 WAS 不会像 Tomcat 那样将其捆绑在 servlet-api.jar 中。

I suppose I am not too late to reply to this question. The HttpServlet class can be found in the j2ee.jar. WAS does not bundle it in servlet-api.jar, the way Tomcat does it.

沉鱼一梦 2024-12-10 23:01:05

您需要在应用程序中捆绑 servlet-api.jar 文件。

You need to bundle servlet-api.jar file in your application.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文