tomcat6应用部署错误
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您遇到空白页面,您(和我们)需要的最重要的信息是:
这通常表明 URL 错误(由 1 证明),或者 JSP 页面中途出现异常(由 2 和 4 证明),或者没有错误页面的内部服务器错误(由 3 和 4 证明)。
If you ever get a blank page, the most important information you (and we) need are:
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).
您需要配置 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.