tomcat6应用部署错误

发布于 2024-08-13 16:15:14 字数 271 浏览 4 评论 0原文

我是 tomcat 和 servlet 的新手,正在尝试在 tomcat 中部署我的第一个 Web 应用程序,但 index.jsp 页面显示为空白。

它在日食中工作得很好。我有用于应用程序设置的 web.xml,以将 index.jsp 作为默认页面。我能够运行该应用程序并在 eclipse 中对其进行调试,但是当我将其导出为 WAR 文件并将其部署在 tomcat 中并尝试通过常规浏览器访问它时,我得到一个空白页面。

我在这里缺少什么?非常感谢任何帮助。

谢谢, - 瓦斯

I am new to tomcat and servlets and am trying to deploy my first web application in tomcat and the index.jsp page is showing up blank.

It works fine in eclipse. I have the web.xml for the application setup to have the index.jsp as the default page. I am able to run the application and debug it in eclipse but when I export it as a WAR file and deploy it in tomcat and try to access it through a regular browser I get a blank page.

What am I missing here? Any help is greatly appreciated.

Thanks,
- Vas

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

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

发布评论

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

评论(2

乖乖哒 2024-08-20 16:15:14

如果您遇到空白页面,您(和我们)需要的最重要的信息是:

  1. 请求 URL。
  2. 已发送的数据 - 如果有 - (网络浏览器 > 查看源代码)。
  3. 响应标头(Firebug?Webdeveloper Toolbar?)。
  4. 服务器日志(stdout、stderr、webapp)。

这通常表明 URL 错误(由 1 证明),或者 JSP 页面中途出现异常(由 2 和 4 证明),或者没有错误页面的内部服务器错误(由 3 和 4 证明)。

If you ever get a blank page, the most important information you (and we) need are:

  1. The request URL.
  2. The already sent data -if any- (webbrowser > View Source).
  3. The response headers (Firebug? Webdeveloper Toolbar?).
  4. The server logs (stdout, stderr, webapp).

This usually indicate a wrong URL (to be proven by 1), or an exception halfway a JSP page (to be proven by 2 and 4), or an internal server error without an error page (to be proven by 3 and 4).

萤火眠眠 2024-08-20 16:15:14

您需要配置 server.xml 文件并声明 Web 应用程序的上下文。您可以在此处找到文档: http://tomcat.apache.org /tomcat-6.0-doc/config/context.html

但是空白页面有点奇怪,因为我认为如果您的 Web 应用程序部署不正确,您将收到 Http 404 错误。

You need to configure your server.xml file and declare a context for your web application. You can find the documentation here: http://tomcat.apache.org/tomcat-6.0-doc/config/context.html

But a blank page is kind of weird, because I think if your web application wasn't deploy correctly, you will get a Http 404 error.

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